1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 05:37:29 +02:00

Use HTML5 base64 functions2

This commit is contained in:
Uwe L. Korn
2014-05-31 14:11:47 +01:00
parent fc4dd7ce1c
commit 1fd6b1bc21
3 changed files with 2 additions and 17 deletions

View File

@@ -321,3 +321,5 @@ Tomahawk.hmac = function (key, message) {
// some aliases
Tomahawk.setTimeout = Tomahawk.setTimeout || window.setTimeout;
Tomahawk.setInterval = Tomahawk.setInterval || window.setInterval;
Tomahawk.base64Decode = window.atob;
Tomahawk.base64Encode = window.btoa;