mirror of
https://github.com/moparisthebest/wallabag
synced 2025-03-01 09:51:47 -05:00
13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
var wallabag = {};
|
|
|
|
wallabag.App = (function() {
|
|
|
|
return {
|
|
Run: function() {
|
|
// wallabag.Event.ListenKeyboardEvents();
|
|
wallabag.Event.ListenMouseEvents();
|
|
},
|
|
}
|
|
|
|
})();
|