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:
Maxime Thirouin
2016-06-28 07:17:43 +02:00
committed by GitHub
2 changed files with 7 additions and 5 deletions

View File

@@ -94,7 +94,12 @@ Pjax.prototype = {
matches.shift()
matches.forEach(function(htmlAttrib) {
var attr = htmlAttrib.trim().split("=")
tmpEl.documentElement.setAttribute(attr[0], attr[1].slice(1, -1))
if (attr.length === 1) {
tmpEl.documentElement.setAttribute(attr[0], true)
}
else {
tmpEl.documentElement.setAttribute(attr[0], attr[1].slice(1, -1))
}
})
}
}

View File

@@ -1,6 +1,3 @@
var parseDom = require("./parse-dom")
module.exports = function(el) {
parseDom(el || document)
this.parseDOM(el || document)
}