Difference between revisions of "MediaWiki:Vector.js"

From Wikimini Stock
Jump to: navigation, search
(Created page with "$(document).ready(function() { if( ! $('#myCanvas').tagcanvas({ textColour : '#000000', outlineThickness : 1, maxSpeed : 0.3, depth : 0.75, imageSc...")
(No difference)

Revision as of 10:22, 8 September 2015

$(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...
 });