Utility.keydown(): fix search+replace mistake (#3799).

This commit is contained in:
evazion
2018-08-04 16:01:32 -05:00
parent 5de0bd2ebb
commit 9ee93a8d1f

View File

@@ -56,7 +56,7 @@ Utility.error = function(msg) {
Utility.keydown = function(keys, namespace, handler) {
if (Utility.meta("enable-js-navigation") === "true") {
$(document).on("keydown" + ".Utility." + namespace, null, keys, handler);
$(document).on("keydown.danbooru." + namespace, null, keys, handler);
}
};