1
0
mirror of synced 2025-02-10 09:09:24 +03:00

Merge pull request #2747 from arthur-peka/master

fixing minor errors e.g. redefined variable
This commit is contained in:
Kevin Brown 2014-10-16 10:40:44 -04:00
commit 30ab851142

View File

@ -46,7 +46,7 @@ the specific language governing permissions and limitations under the Apache Lic
return; return;
} }
var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer, var AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer,
lastMousePosition={x:0,y:0}, $document, scrollBarDimensions, lastMousePosition={x:0,y:0}, $document, scrollBarDimensions,
KEY = { KEY = {
@ -1404,7 +1404,7 @@ the specific language governing permissions and limitations under the Apache Lic
// create the dropdown mask if doesn't already exist // create the dropdown mask if doesn't already exist
mask = $("#select2-drop-mask"); mask = $("#select2-drop-mask");
if (mask.length == 0) { if (mask.length === 0) {
mask = $(document.createElement("div")); mask = $(document.createElement("div"));
mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask"); mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask");
mask.hide(); mask.hide();