trentrichardson / jQuery-Timepicker-Addon

Adds a timepicker to jQueryUI Datepicker
http://trentrichardson.com/examples/timepicker/
MIT License
2.66k stars 1.05k forks source link

ie10 error: window.console.log.apply #833

Closed ltdeta closed 8 years ago

ltdeta commented 8 years ago

ie10 throwing an error if time object format is wrong

jquery-ui-timepicker-addon.js

Meldung: Das Objekt unterstützt die Eigenschaft oder Methode "apply" nicht
Zeile: 2209
Zeichen: 4
Code: 0

comment out line 2209 it works

2207    $.timepicker.log = function () {
2208        if (window.console) {
2209            window.console.log.apply(window.console, Array.prototype.slice.call(arguments));
2210        }
2211    };

an configuration option for logging can resolve the problem