Dont need to wrap entwine blocks in onload blocks, theres no benefit

This commit is contained in:
Hamish Friedlander 2012-07-27 11:17:56 +12:00
parent a9bedccd1f
commit 72efed1993

View File

@ -21,19 +21,13 @@
* Refresh the member listing every time the import iframe is loaded, * Refresh the member listing every time the import iframe is loaded,
* which is most likely a form submission. * which is most likely a form submission.
*/ */
$(window).bind('load', function(e) { $('#MemberImportFormIframe, #GroupImportFormIframe').entwine({
$('#MemberImportFormIframe,#GroupImportFormIframe').entwine({ onadd: function() {
onmatch: function() {
this._super(); this._super();
// TODO entwine can't seem to bind to iframe load events // TODO entwine can't seem to bind to iframe load events
$(this).bind('load', refreshAfterImport); $(this).bind('load', refreshAfterImport);
},
onunmatch: function() {
this._super();
} }
}); });
});
$.entwine('ss', function($){ $.entwine('ss', function($){
/** /**