Index: trunk/extensions/ClickTracking/modules/jquery.clickTracking.js |
— | — | @@ -25,7 +25,7 @@ |
26 | 26 | * @param {string} id event identifier |
27 | 27 | */ |
28 | 28 | $.trackAction = function( id ) { |
29 | | - $j.post( |
| 29 | + $.post( |
30 | 30 | mediaWiki.config.get( 'wgScriptPath' ) + '/api.php', { |
31 | 31 | 'action': 'clicktracking', |
32 | 32 | 'eventid': id, |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | * @param {string} info additional information to be stored with the click |
42 | 42 | */ |
43 | 43 | $.trackActionWithInfo = function( id, info ) { |
44 | | - $j.post( |
| 44 | + $.post( |
45 | 45 | mediaWiki.config.get( 'wgScriptPath' ) + '/api.php', { |
46 | 46 | 'action': 'clicktracking', |
47 | 47 | 'eventid': id, |