Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 076f37a

Browse files
committed
fix last ie failure
1 parent c29dc1a commit 076f37a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/directives.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ angularDirective("ng-bind-attr", function(expression){
109109
specialName = REMOVE_ATTRIBUTES[lowercase(key)];
110110
if (specialName) {
111111
if (element[specialName] = toBoolean(value)) {
112-
element.attr(key, value);
112+
element.attr(specialName, value);
113113
} else {
114114
element.removeAttr(key);
115115
}

test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# java -jar lib/jstestdriver/JsTestDriver.jar --tests all
2-
java -jar lib/jstestdriver/JsTestDriver.jar --tests 'widget ng:switch' --config jsTestDriver-jquery.conf
1+
java -jar lib/jstestdriver/JsTestDriver.jar --tests all
2+
# java -jar lib/jstestdriver/JsTestDriver.jar --tests all --config jsTestDriver-jquery.conf

0 commit comments

Comments
 (0)