mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 04:29:21 +03:00
Fix arguments -> ...args
This commit is contained in:
parent
d22456f4de
commit
253a19987f
2 changed files with 18 additions and 17 deletions
3
dev/External/ko.js
vendored
3
dev/External/ko.js
vendored
|
|
@ -996,7 +996,8 @@
|
|||
}
|
||||
|
||||
jqElement.addClass('command');
|
||||
ko.bindingHandlers[jqElement.is('form') ? 'submit' : 'click'].init.apply(oViewModel, arguments);
|
||||
ko.bindingHandlers[jqElement.is('form') ? 'submit' : 'click']
|
||||
.init.apply(oViewModel, Array.prototype.slice.call(arguments));
|
||||
},
|
||||
|
||||
'update': function (oElement, fValueAccessor) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue