[Uncaught ReferenceError: Spinner не определен].
И spinner отлично работает во всех других браузерах!
Вот соответствующий код:
Код: Выделить всё
//Jquery Spinner
$.fn.spin = function(opts) {
this.each(function() {
var $this = $(this), data = $this.data();
if (data.spinner) {
data.spinner.stop();
delete data.spinner;
}
if (opts !== false) {
data.spinner = new Spinner($.extend({
color: $this.css('color')}, opts)).spin(this);
}
});
return this;
};
Подробнее здесь: https://stackoverflow.com/questions/146 ... -on-chrome