Merge changes I83d4808a,If8ea8c1f

* changes:
  JsHint fixes - Move the invocation into the parens that contain the function.
  Fix Bug 39096 - Narayam compatibility with ULS
This commit is contained in:
Nikerabbit
2012-09-07 11:07:10 +00:00
committed by Gerrit Code Review
7 changed files with 10 additions and 10 deletions

View File

@@ -154,7 +154,7 @@ input#languagefilter {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
color: #333;
display: block;
background-color: transparent;
background-color: transparent !important;
}
input:focus#languagefilter {

View File

@@ -264,8 +264,8 @@
if ( e.keyCode === 27 ) { // escape
this.hide();
e.preventDefault();
e.stopPropagation();
}
e.stopPropagation();
},
keypress: function( e ) {
@@ -275,8 +275,8 @@
if ( e.keyCode === 27 ) { // escape
this.hide();
e.preventDefault();
e.stopPropagation();
}
e.stopPropagation();
},
click: function( e ) {