#1342 update m.route.link target if href changes

This commit is contained in:
Leo Horie 2016-10-04 12:19:55 -04:00
parent 0e918f14c2
commit 40251c6c16
7 changed files with 153 additions and 44 deletions

View file

@ -313,6 +313,15 @@ o.spec("domMock", function() {
})
})
o.spec("getAttribute", function() {
o("works", function() {
var div = $document.createElement("div")
div.setAttribute("id", "aaa")
o(div.getAttribute("id")).equals("aaa")
})
})
o.spec("setAttribute", function() {
o("works", function() {
var div = $document.createElement("div")