1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-19 04:11:46 +02:00

Merge remote-tracking branch 'origin/async'

This commit is contained in:
Christian Muehlhaeuser
2011-08-15 02:01:34 +02:00
4 changed files with 55 additions and 16 deletions

View File

@@ -311,4 +311,10 @@ Tomahawk.sha256=function(s){
s = Utf8Encode(s);
return binb2hex(core_sha256(str2binb(s), s.length * chrsz));
};
};
// some aliases
Tomahawk.setTimeout = window.setTimeout;
Tomahawk.setInterval = window.setInterval;