Merge pull request #67 from compressed/refresh
Update refresh and handle attributes without values
This commit was merged in pull request #67.
This commit is contained in:
5
index.js
5
index.js
@@ -94,7 +94,12 @@ Pjax.prototype = {
|
|||||||
matches.shift()
|
matches.shift()
|
||||||
matches.forEach(function(htmlAttrib) {
|
matches.forEach(function(htmlAttrib) {
|
||||||
var attr = htmlAttrib.trim().split("=")
|
var attr = htmlAttrib.trim().split("=")
|
||||||
|
if (attr.length === 1) {
|
||||||
|
tmpEl.documentElement.setAttribute(attr[0], true)
|
||||||
|
}
|
||||||
|
else {
|
||||||
tmpEl.documentElement.setAttribute(attr[0], attr[1].slice(1, -1))
|
tmpEl.documentElement.setAttribute(attr[0], attr[1].slice(1, -1))
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
|
|
||||||
var parseDom = require("./parse-dom")
|
|
||||||
|
|
||||||
module.exports = function(el) {
|
module.exports = function(el) {
|
||||||
parseDom(el || document)
|
this.parseDOM(el || document)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user