User:Vinifera7/common.js: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Undo revision 1360394 by Vinifera7 (talk))
Tag: Undo
No edit summary
 
Line 11: Line 11:
$( function() {
$( function() {


 
    console.log('User scripts are enabled!');


} );
} );

Latest revision as of 13:03, 9 October 2023

( function() {
'use strict';

mw.hook('wikipage.content').add( function($wikipageContent) {

    console.log('test');

} );

/* Fires when DOM is ready */
$( function() {

    console.log('User scripts are enabled!');

} );
/* End DOM ready */

}() );