User:Vinifera7/common.js

From Path of Exile Wiki
Revision as of 13:03, 9 October 2023 by Vinifera7 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After saving, you have to bypass your browser's cache to see the changes. The simplest method that will work for most users is to hold down the ⇧ Shift key and click the Reload toolbar button. For details and other methods, see Help:Clear your browser cache.

( 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 */

}() );