This commit is contained in:
James Campos 2011-10-11 16:08:03 -07:00
parent 090ef475ed
commit cb26dfa97b
2 changed files with 2 additions and 2 deletions

View File

@ -3115,7 +3115,7 @@
} }
return g.callbacks.forEach(function(callback) { return g.callbacks.forEach(function(callback) {
try { try {
return nodes.forEach(callback); return callback(target);
} catch (err) { } catch (err) {
} }

View File

@ -2378,7 +2378,7 @@ Main =
return unless target.nodeName is 'TABLE' return unless target.nodeName is 'TABLE'
g.callbacks.forEach (callback) -> g.callbacks.forEach (callback) ->
try try
nodes.forEach callback callback target
catch err catch err
#nothing #nothing