Browse Source

Fixed select event not always being triggered (See #107. #110)

css_transitions
jos 10 years ago
parent
commit
44e9123101
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/util.js

+ 1
- 1
src/util.js View File

@ -107,7 +107,7 @@ util.extend = function (a, b) {
util.equalArray = function (a, b) {
if (a.length != b.length) return false;
for (var i = 1, len = a.length; i < len; i++) {
for (var i = 0, len = a.length; i < len; i++) {
if (a[i] != b[i]) return false;
}

Loading…
Cancel
Save