diff options
| author | Misko Hevery | 2010-04-21 14:29:05 -0700 |
|---|---|---|
| committer | Misko Hevery | 2010-04-21 14:29:05 -0700 |
| commit | 8b29156a2ddcc738f9b0cf8dfc48a8648474884d (patch) | |
| tree | 4bbb4e936ee8f2ab34ed03509ad5da0b46e4ef04 /src/jqLite.js | |
| parent | 4aaec251dfebd01729c0726f07fc113b97679219 (diff) | |
| download | angular.js-8b29156a2ddcc738f9b0cf8dfc48a8648474884d.tar.bz2 | |
ie6 now passes
Diffstat (limited to 'src/jqLite.js')
| -rw-r--r-- | src/jqLite.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jqLite.js b/src/jqLite.js index 0867f9c9..36248e71 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -187,7 +187,7 @@ JQLite.prototype = { } else { var attributes = e.attributes, item = attributes ? attributes.getNamedItem(name) : undefined; - return item ? item.value : undefined; + return item && item.specified ? item.value : undefined; } }, |
