IE 11 bug
This commit is contained in:
parent
e319940937
commit
d0223c5f9c
|
@ -1976,7 +1976,7 @@
|
||||||
return this.value; // $(this).val()
|
return this.value; // $(this).val()
|
||||||
}).get();
|
}).get();
|
||||||
function countInArray(array, what) {
|
function countInArray(array, what) {
|
||||||
return array.filter(item => item == what).length;
|
return array.filter(function(item) { return item == what;}).length;
|
||||||
}
|
}
|
||||||
var result = false;
|
var result = false;
|
||||||
var currentVal = $(element).val();
|
var currentVal = $(element).val();
|
||||||
|
|
Loading…
Reference in New Issue