Removed superfluous function wrappers on the yui event subscriptions.

This commit is contained in:
Kaleb Murphy 2009-05-01 19:11:48 +00:00
parent 70c5997872
commit 676b124697

View file

@ -149,8 +149,8 @@ Survey.ObjectTemplate = (function(){
dialog.callback = Survey.Comm.callback;
dialog.hideEvent.subscribe(function(){Survey.ObjectTemplate.hideEditor();});
dialog.dragEvent.subscribe(function(){Survey.ObjectTemplate.showEditor();});
dialog.hideEvent.subscribe(Survey.ObjectTemplate.hideEditor);
dialog.dragEvent.subscribe(Survey.ObjectTemplate.showEditor);
dialog.render();