mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-30 04:42:19 -05:00
13 lines
212 B
JavaScript
13 lines
212 B
JavaScript
var wallabag = {};
|
|
|
|
wallabag.App = (function() {
|
|
|
|
return {
|
|
Run: function() {
|
|
wallabag.Event.ListenKeyboardEvents();
|
|
wallabag.Event.ListenMouseEvents();
|
|
},
|
|
}
|
|
|
|
})();
|