first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
(function ($, window, document, undefined) {
let pluginName = 'keypressAction', defaults = {};
// The actual plugin constructor
function keypressAction(element, options) {
this.element = element;
this.settings = $.extend({}, defaults, options);
this._defaults = defaults;
this._name = pluginName;
this.init();
}
$.extend(keypressAction.prototype, {
bindKeyToRoute(key, route) {
Mousetrap.bind([key], (e) => {
window.location = route;
return false;
});
},
init() {
$.each(this.settings.actions, (index, object) => {
this.bindKeyToRoute(object.key, object.route);
});
},
});
$.fn[pluginName] = function (options) {
this.each(function () {
if (! $.data(this, `plugin_${pluginName}`)) {
$.data(this, `plugin_${pluginName}`, new keypressAction(this, options));
}
});
// chain jQuery functions
return this;
};
})(jQuery, window, document);