Index: trunk/extensions/SemanticForms/libs/SF_popupform.js |
— | — | @@ -6,30 +6,30 @@ |
7 | 7 | */ |
8 | 8 | |
9 | 9 | // initialise |
10 | | -jQuery( function( $ ) { |
| 10 | +jQuery( function() { |
11 | 11 | |
12 | 12 | // register eventhandlers on 'edit' links and buttons |
13 | 13 | |
14 | 14 | // register formlink with link |
15 | | - $('a.popupformlink').click(function(evt){ |
| 15 | + jQuery('a.popupformlink').click(function(evt){ |
16 | 16 | return ext.popupform.handlePopupFormLink( this.getAttribute('href'), this ); |
17 | 17 | }); |
18 | 18 | |
19 | 19 | // register formlink with button |
20 | | - $( 'form.popupformlink' ).submit(function(evt){ |
| 20 | + jQuery( 'form.popupformlink' ).submit(function(evt){ |
21 | 21 | return ext.popupform.handlePopupFormLink( this.getAttribute( 'action' ), this ); |
22 | 22 | }); |
23 | 23 | |
24 | 24 | |
25 | 25 | // register forminput |
26 | | - $( 'form.popupforminput' ).submit(function(evt){ |
| 26 | + jQuery( 'form.popupforminput' ).submit(function(evt){ |
27 | 27 | return ext.popupform.handlePopupFormInput( this.getAttribute( 'action' ), this ); |
28 | 28 | }); |
29 | 29 | |
30 | 30 | }); |
31 | 31 | |
32 | 32 | // create ext if it does not exist yet |
33 | | -if ( typeof( window.ext' ) === "undefined" ) { |
| 33 | +if ( typeof( window.ext ) === "undefined" ) { |
34 | 34 | window.ext = {}; |
35 | 35 | } |
36 | 36 | |