').append($toggleOn, $toggleOff, $toggleHandle);\n var $toggle = $('
').addClass(this.$element.prop('checked') ? this._onstyle : this._offstyle + ' off').addClass(size).addClass(this.options.style);\n this.$element.wrap($toggle);\n $.extend(this, {\n $toggle: this.$element.parent(),\n $toggleOn: $toggleOn,\n $toggleOff: $toggleOff,\n $toggleGroup: $toggleGroup\n });\n this.$toggle.append($toggleGroup);\n var width = this.options.width || Math.max($toggleOn.outerWidth(), $toggleOff.outerWidth()) + $toggleHandle.outerWidth() / 2;\n var height = this.options.height || Math.max($toggleOn.outerHeight(), $toggleOff.outerHeight());\n $toggleOn.addClass('toggle-on');\n $toggleOff.addClass('toggle-off');\n this.$toggle.css({\n width: width,\n height: height\n });\n\n if (this.options.height) {\n $toggleOn.css('line-height', $toggleOn.height() + 'px');\n $toggleOff.css('line-height', $toggleOff.height() + 'px');\n }\n\n this.update(true);\n this.trigger(true);\n };\n\n Toggle.prototype.toggle = function () {\n if (this.$element.prop('checked')) this.off();else this.on();\n };\n\n Toggle.prototype.on = function (silent) {\n if (this.$element.prop('disabled')) return false;\n this.$toggle.removeClass(this._offstyle + ' off').addClass(this._onstyle);\n this.$element.prop('checked', true);\n if (!silent) this.trigger();\n };\n\n Toggle.prototype.off = function (silent) {\n if (this.$element.prop('disabled')) return false;\n this.$toggle.removeClass(this._onstyle).addClass(this._offstyle + ' off');\n this.$element.prop('checked', false);\n if (!silent) this.trigger();\n };\n\n Toggle.prototype.enable = function () {\n this.$toggle.removeAttr('disabled');\n this.$element.prop('disabled', false);\n };\n\n Toggle.prototype.disable = function () {\n this.$toggle.attr('disabled', 'disabled');\n this.$element.prop('disabled', true);\n };\n\n Toggle.prototype.update = function (silent) {\n if (this.$element.prop('disabled')) this.disable();else this.enable();\n if (this.$element.prop('checked')) this.on(silent);else this.off(silent);\n };\n\n Toggle.prototype.trigger = function (silent) {\n this.$element.off('change.bs.toggle');\n if (!silent) this.$element.change();\n this.$element.on('change.bs.toggle', $.proxy(function () {\n this.update();\n }, this));\n };\n\n Toggle.prototype.destroy = function () {\n this.$element.off('change.bs.toggle');\n this.$toggleGroup.remove();\n this.$element.removeData('bs.toggle');\n this.$element.unwrap();\n }; // TOGGLE PLUGIN DEFINITION\n // ========================\n\n\n function Plugin(option) {\n return this.each(function () {\n var $this = $(this);\n var data = $this.data('bs.toggle');\n var options = _typeof(option) == 'object' && option;\n if (!data) $this.data('bs.toggle', data = new Toggle(this, options));\n if (typeof option == 'string' && data[option]) data[option]();\n });\n }\n\n var old = $.fn.bootstrapToggle;\n $.fn.bootstrapToggle = Plugin;\n $.fn.bootstrapToggle.Constructor = Toggle; // TOGGLE NO CONFLICT\n // ==================\n\n $.fn.toggle.noConflict = function () {\n $.fn.bootstrapToggle = old;\n return this;\n }; // TOGGLE DATA-API\n // ===============\n\n\n $(function () {\n $('input[type=checkbox][data-toggle^=toggle]').bootstrapToggle();\n });\n $(document).on('click.bs.toggle', 'div[data-toggle^=toggle]', function (e) {\n var $checkbox = $(this).find('input[type=checkbox]');\n $checkbox.bootstrapToggle('toggle');\n e.preventDefault();\n });\n}(jQuery);"],"sourceRoot":""}