User:Iritscen/vector.js: Difference between revisions

From OniGalore
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:
});*/
});*/


function sleep(ms) {
var a = 1 + 3;
  return new Promise(resolve function (foo) {setTimeout(resolve, ms)});
var b;
}
console.log("Engaging hacky sleep function...");
 
setTimeout(function()
async function demo() {
{
  console.log('Taking a break...');
    b = a + 4;
  await sleep(2000);
}, (2 * 1000));
  console.log('Two second later');
console.log("Done.");
}
 
demo();

Revision as of 05:07, 15 February 2018

// Add handy buttons to my editing toolbar; see [[XEB]] for documentation
XEBOrder="0,1,U,S,F,I1,I2,J1,J2,D,C,D1,4,A,R1,R2,2,3,K,T,Y1,Y2,Z,E1,5,AI,G,8,P,T1,O,H,FS,9,V,N,B,BF,BV";

// Use test JS if we're on a test page
if (mw.config.get('wgPageName') === 'User:Iritscen/TestSpace' || mw.config.get('wgPageName') === 'User:Iritscen/TestSpace2')
{
   mw.loader.load('/w/index.php?title=User:Iritscen/TestSpace.js&action=raw&ctype=text/javascript');
}

// Add handy links to my sidebar
// This code is disabled but left in place since it is referred to on [[MediaWiki:Common]]
/*$(function()
{
    ModifySidebar("sep", "navigation", "", "");
    ModifySidebar("add", "navigation", "Slaves of War", "http://wiki.oni2.net/Oni2:Slaves_of_War");
});*/

var a = 1 + 3;
var b;
console.log("Engaging hacky sleep function...");
setTimeout(function()
{
    b = a + 4;
}, (2 * 1000));
console.log("Done.");