Skip to content

Commit

Permalink
update #677
Browse files Browse the repository at this point in the history
  • Loading branch information
yiminghe committed Aug 28, 2014
1 parent abb58de commit 18274cc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/dom/base-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/dom/base.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Copyright 2014, KISSY v1.47
MIT Licensed
build time: Aug 28 13:29
build time: Aug 28 13:31
*/
/*
Combined processedModules by KISSY Module Compiler:
Expand Down Expand Up @@ -1650,7 +1650,7 @@ KISSY.add("dom/base/selector", ["./api"], function(S, require) {
}
}else {
getElementsByClassName = function(el, match) {
el.getElementsByClassName(match)
return el.getElementsByClassName(match)
}
}
function queryEach(f) {
Expand Down
2 changes: 1 addition & 1 deletion src/dom/sub-modules/base/coverage/src/base/selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ KISSY.add(function(S, require) {
getElementsByClassName = function(el, match) {
_$jscoverage['/base/selector.js'].functionData[2]++;
_$jscoverage['/base/selector.js'].lineData[45]++;
el.getElementsByClassName(match);
return el.getElementsByClassName(match);
};
}
_$jscoverage['/base/selector.js'].lineData[49]++;
Expand Down
2 changes: 1 addition & 1 deletion src/dom/sub-modules/base/src/base/selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ KISSY.add(function (S, require) {
};
} else {
getElementsByClassName = function (el, match) {
el.getElementsByClassName(match);
return el.getElementsByClassName(match);
};
}

Expand Down

0 comments on commit 18274cc

Please sign in to comment.