User:Wikiuser/packaged.js

From Patch demo (756169,3 751183,20 756169,3)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
console.log('In User:Wikiuser/packaged.js');

// Import from own userspace
var json = require('./packaged.json');
console.log(json);

// Import from another user's userspace
var json2 = require('../User:Wikiuser2/data.json');
console.log(json2);

// Check if dependencies loaded
if ($.i18n) {
	console.log('jquery.i18n loaded successfully :)');
} else {
	console.log('jquery.i18n was not loaded :(');
}

// Check if messages loaded
console.log('message:', mw.msg('blanknamespace'))