r89955 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r89954
|
r89955
|
r89956
>
Date:
09:56, 13 June 2011
Author:
wikinaut
Status:
ok
Tags:
Comment:
essage=corrected my mistake when comparing if textbox length is empty, or not.
Modified paths:
/trunk/phase3/resources/jquery/jquery.suggestions.js
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/resources/jquery/jquery.suggestions.js
—
—
@@ -82,7 +82,7 @@
83
83
}
84
84
85
85
// clear result div if the value in the textbox is empty
86
- if ( context.data.$textbox.val().length != 0 ) {
86
+ if ( context.data.$textbox.val().length == 0 ) {
87
87
context.data.$container.hide();
88
88
}
89
89
Follow-up revisions
Revision
Commit summary
Author
Date
r89956
follow up patch to
r89950
r89952
r89953
r89955
: moved div clearing inside ca...
wikinaut
11:16, 13 June 2011
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r89951
fix for
bug29368
which may have consequences. Please code reviewers, pls. che...
wikinaut
09:38, 13 June 2011
Status & tagging log
13:25, 14 June 2011
Catrope
(
talk
|
contribs
)
changed the
status
of r89955
[
removed:
new
added:
ok]