Bug 577387: cleanup: removed a couple other instances of iQ.each

This commit is contained in:
Michael Yoshitaka Erlewine 2010-07-13 22:58:30 -04:00
parent 838d1d56b5
commit d02d1fb82e
2 changed files with 2 additions and 2 deletions

View File

@ -300,7 +300,7 @@ window.Group = function(listOfEls, options) {
this.$debug.css({zIndex: -1000});
// ___ Children
iQ.each(listOfEls, function(index, el) {
Array.prototype.forEach.call(listOfEls, function(el) {
self.add(el, null, options);
});

View File

@ -1088,7 +1088,7 @@ UIClass.prototype = {
function putInGroup(set, key) {
var group = Groups.getGroupWithTitle(key);
if (group) {
iQ.each(set, function(index, el) {
set.forEach(function(el) {
group.add(el);
});
} else