1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-03-02 18:31:49 -05:00

13 lines
212 B
JavaScript
Raw Normal View History

var wallabag = {};
wallabag.App = (function() {
return {
Run: function() {
wallabag.Event.ListenKeyboardEvents();
wallabag.Event.ListenMouseEvents();
},
}
})();