
Лучший Ответ mr.varhola , 21 February 2015 - 20:47
а решение простое, закоментил функцию в файле bootstrap.js которая находится прямо под этим описанием:
/* ========================================================================
* Bootstrap: button.js v3.2.0
* http://getbootstrap....script/#buttons
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/t.../master/LICENSE)
* ======================================================================== */
и все стало гуд
вот её начало:
+function ($) {
'use strict';
// BUTTON PUBLIC CLASS DEFINITION
// ==============================
var Button = function (element, options) {
this.$element = $(element)
this.options = $.extend({}, Button.DEFAULTS, options)
this.isLoading = false
}
Button.VERSION = '3.2.0'
Button.DEFAULTS = {
loadingText: 'loading...'
}
