This commit is contained in:
James Campos 2011-10-11 13:45:58 -07:00
parent 2e2850b880
commit b0851a07ad
2 changed files with 6 additions and 6 deletions

View File

@ -3092,8 +3092,8 @@
callback = _ref2[_i]; callback = _ref2[_i];
try { try {
nodes.forEach(callback); nodes.forEach(callback);
} catch (e) { } catch (err) {
alert(e); alert(err);
continue; continue;
} }
} }
@ -3122,7 +3122,7 @@
callback = _ref[_i]; callback = _ref[_i];
try { try {
nodes.forEach(callback); nodes.forEach(callback);
} catch (e) { } catch (err) {
continue; continue;
} }
} }

View File

@ -2360,8 +2360,8 @@ Main =
for callback in g.callbacks for callback in g.callbacks
try try
nodes.forEach callback nodes.forEach callback
catch e catch err
alert e alert err
continue continue
$.bind $('form[name=delform]'), 'DOMNodeInserted', Main.node $.bind $('form[name=delform]'), 'DOMNodeInserted', Main.node
options.init() options.init()
@ -2380,7 +2380,7 @@ Main =
for callback in g.callbacks for callback in g.callbacks
try try
nodes.forEach callback nodes.forEach callback
catch e catch err
continue continue
css: ' css: '