https://bugzilla.wikimedia.org/show_bug.cgi?id=33711
--- Comment #8 from Erwin Dokter <[email protected]> 2012-01-19 12:44:57 UTC --- (In reply to comment #4) > mw.loader.using('mediawiki.util',function($){ > > $ is undefined. > > So mw.util.$content can't be reached because code fails before. Your logic fails... $ and $content are unrelated. $ is an alias for jQuery, while $content is an alias for #bodyContent (depending on skin). function($) is pointless, as the callback from mw.loader.using() does not pass anything (which is fortunate, as that would break jQuery). -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
