We need TW players to complete the article of the region-locked game Fingertips Breakout.
We're aware of an issue which causes comments to only appear after a long delay and are working on a solution.
You don't need an account to add and correct this Wiki. Learn how to contribute, browse Bounties and join our Discord server.

MediaWiki:Gadget-pixiLoader.js

Welcome to IOP Wiki. This website is maintained by the Girls' Frontline community and is free to edit by anyone.
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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
window.animations = window.animations || {};

if (!window.animations.PIXILoader) {
	window.animations.PIXILoader = {};
	window.animations.PIXILoader.initialized = false;
	window.animations.PIXILoader.init = function() {
		return new Promise(
		    function (resolve, reject) {
		    	if (window.animations.PIXILoader.initialized) {
		    		resolve(null);
		    		return;
		    	}
		    	
		    	$.ajax({
				    cache: true,
				    url: "/index.php?title=MediaWiki:Gadget-pixiJsWithSpine.js&action=raw",
				    dataType: "script"
				}).done(function() {
					console.log("Request PIXI JS Framework successfull");
					window.animations.PIXILoader.initialized = true;
				    resolve(null);
				}).fail(function() {
			        console.error("Loading PIXI framework failed");
			        var reason = new Error('PIXI framework failed loading');
			        reject(reason);
			    });
		    }
		);
	};
}

console.log("Loaded PIXI JS Gadget");