did some more work. Mainly worked on code cleanliness and hotkey support (https://defkey.com/tidal-desktop-shortcuts)

This commit is contained in:
2019-10-20 22:47:01 +02:00
parent cbf15965e4
commit 9c3ac88d12
14 changed files with 1672 additions and 122 deletions

View File

@@ -0,0 +1,11 @@
const windowFunctions = {};
windowFunctions.setTitle = function(title) {
window.document.title = title;
};
windowFunctions.getTitle = function() {
return window.document.title;
};
module.exports = windowFunctions;