X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=88b97e7e44f8fa9739ffcb9d917dcea822bde1ba;hb=00768b5e1ff22271690b5977bca56e9b2fc46162;hp=0b1275ed82726005bcc7b555e8060e816d7c9567;hpb=461b072662d5d1fb0e2e7d8cfc24cd63f726343c;p=brisk.git diff --git a/web/commons.js b/web/commons.js index 0b1275e..88b97e7 100644 --- a/web/commons.js +++ b/web/commons.js @@ -60,6 +60,39 @@ function $(id) { return document.getElementById(id); } throw Error('setInterval Error\nInvalid function type'); }; }; + + /*Copy the default setTimeout behavior*/ + var nativeSetTimeout = window.setTimeout; + window.setTimeout = function(fn,ms) { + var param = []; + if(arguments.length <= 2) { + return nativeSetTimeout(fn,ms); + } + else { + for(var i=2;i"; } + +function playsound(tag, sound) { + // g_withflash is a global var + if (g_withflash) { + alert("PLAYSOUND "+sound); + $(tag).innerHTML = '' + +'' + +'' + +''; + } +}