diff options
author | Suhaib Khan <suhebjerk@gmail.com> | 2014-02-24 00:37:41 +0530 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-23 09:11:40 -0700 |
commit | a74216527c42b9bcef876ab1df93185dc7f18889 (patch) | |
tree | abffc7a48f1f706ee6fc375dca597af039078d9a /phpBB/assets | |
parent | aa23cf64cae6710f556c8d43528d28cff6d6a775 (diff) | |
download | forums-a74216527c42b9bcef876ab1df93185dc7f18889.tar forums-a74216527c42b9bcef876ab1df93185dc7f18889.tar.gz forums-a74216527c42b9bcef876ab1df93185dc7f18889.tar.bz2 forums-a74216527c42b9bcef876ab1df93185dc7f18889.tar.xz forums-a74216527c42b9bcef876ab1df93185dc7f18889.zip |
[ticket/10737] Removing obsolete code.
PHPBB3-10737
Diffstat (limited to 'phpBB/assets')
-rw-r--r-- | phpBB/assets/javascript/core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js index 82c78ae715..e5f4bd824d 100644 --- a/phpBB/assets/javascript/core.js +++ b/phpBB/assets/javascript/core.js @@ -513,7 +513,7 @@ phpbb.timezonePreselectSelect = function(forceSelector) { }; // Listen live search box events -$('.liveinput').keyup(function() { +$('.live-search-input').keyup(function() { var str = this.value; if (str.length < 3) { return; @@ -538,7 +538,7 @@ $('.liveinput').keyup(function() { }); }); -$('.liveinput').blur(function() { +$('.live-search-input').blur(function() { setTimeout(function () { var clone = $("#user-search-row-tpl").clone(); $("#livesearch").html(""); |