o: ActiveSupport::Cache::Entry :@created_atf1363392034.929021:@expires_in0: @value"ˆ!{I" class:EFI"ProcessedAsset;FI"logical_path;FI"bootstrapSwitch.js;TI" pathname;FI"C/Users/kevin/flms/vendor/assets/javascripts/bootstrapSwitch.js;TI"content_type;FI"application/javascript;FI" mtime;FI"2013-03-05T16:38:11-08:00;FI" length;Fi£I" digest;F"%5c4d2c33438c04fab9a573b0af24afe1I" source;FI"£/* ============================================================ * bootstrapSwitch v1.2 by Larentis Mattia @spiritualGuru * http://www.larentis.eu/switch/ * ============================================================ * Licensed under the Apache License, Version 2.0 * http://www.apache.org/licenses/LICENSE-2.0 * ============================================================ */ !function ($) { "use strict"; $.fn['bootstrapSwitch'] = function (method) { var methods = { init: function () { return this.each(function () { var $element = $(this) , $div , $switchLeft , $switchRight , $label , myClasses = "" , classes = $element.attr('class') , color , moving , onLabel = "ON" , offLabel = "OFF"; $.each(['switch-mini', 'switch-small', 'switch-large'], function (i, el) { if (classes.indexOf(el) >= 0) myClasses = el; }); $element.addClass('has-switch'); if ($element.data('on') !== undefined) color = "switch-" + $element.data('on'); if ($element.data('on-label') !== undefined) onLabel = $element.data('on-label'); if ($element.data('off-label') !== undefined) offLabel = $element.data('off-label'); $switchLeft = $('') .addClass("switch-left") .addClass(myClasses) .addClass(color) .html(onLabel); color = ''; if ($element.data('off') !== undefined) color = "switch-" + $element.data('off'); $switchRight = $('') .addClass("switch-right") .addClass(myClasses) .addClass(color) .html(offLabel); $label = $('