MediaWiki:Vector.js

From Wikimini Stock
Revision as of 10:22, 8 September 2015 by Mory (talk | contribs) (Created page with "$(document).ready(function() { if( ! $('#myCanvas').tagcanvas({ textColour : '#000000', outlineThickness : 1, maxSpeed : 0.3, depth : 0.75, imageSc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
$(document).ready(function() {
   if( ! $('#myCanvas').tagcanvas({
     textColour : '#000000',
     outlineThickness : 1,
     maxSpeed : 0.3,
     depth : 0.75,
     imageScale : null,
     shuffleTags : true
   })) {
     // TagCanvas failed to load
     $('#myCanvasContainer').hide();
   }
   // your other jQuery stuff here...
 });