mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-02 13:52:18 -05:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
|
var poche = {};
|
||
|
|
||
|
poche.App = (function() {
|
||
|
|
||
|
return {
|
||
|
Run: function() {
|
||
|
// poche.Event.ListenKeyboardEvents();
|
||
|
poche.Event.ListenMouseEvents();
|
||
|
},
|
||
|
}
|
||
|
|
||
|
})();
|