mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-23 07:15:50 -04:00
#2055, 2056 - jQuery updates for .attr("value", [value]) and .keyup(handler).
- changed .attr("value", [value]) to .val([value]) for new jQuery.
- changed .keyup(handler) to .on("input keyup", handler) to fire on mouse-only cut'n'paste.
This commit is contained in:
@@ -39,8 +39,8 @@
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$("#g-admin-advanced-settings-filter").keyup(function() {
|
||||
var filter = $(this).attr("value");
|
||||
$("#g-admin-advanced-settings-filter").on("input keyup", function() {
|
||||
var filter = $(this).val();
|
||||
if (filter) {
|
||||
$("tr.setting-row").fadeOut("fast");
|
||||
$("tr.setting-row").each(function() {
|
||||
|
||||
Reference in New Issue
Block a user