mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-27 11:22:17 -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();
|
|
},
|
|
}
|
|
|
|
})();
|