{I" class:ETI"ProcessedAsset;FI"logical_path;TI"rails_admin/ra.widgets.js;FI" pathname;TI"x/Users/jirikolarik/.rvm/gems/ruby-2.1.1/gems/rails_admin-0.6.1/app/assets/javascripts/rails_admin/ra.widgets.coffee;FI"content_type;TI"application/javascript;TI" mtime;Tl+–SI" length;TiP)I" digest;TI"%1ae8351dc24c4902580e81c39e6bfcfd;FI" source;TI"P)(function() { $(document).on('rails_admin.dom_ready', function(e, content) { var $editors, array, config_options, goBootstrapWysihtml5s, goCkeditors, goCodeMirrors, options; content = content ? content : $('form'); if (content.length) { content.find('[data-color]').each(function() { var that; that = this; return $(this).ColorPicker({ color: $(that).val(), onShow: function(el) { $(el).fadeIn(500); return false; }, onHide: function(el) { $(el).fadeOut(500); return false; }, onChange: function(hsb, hex, rgb) { $(that).val(hex); return $(that).css('backgroundColor', '#' + hex); } }); }); content.find('[data-datetimepicker]').each(function() { return $(this).datetimepicker($(this).data('options')); }); content.find('[data-enumeration]').each(function() { if ($(this).is('[multiple]')) { return $(this).filteringMultiselect($(this).data('options')); } else { return $(this).filteringSelect($(this).data('options')); } }); content.find('[data-fileupload]').each(function() { var input; input = this; return $(this).on('click', ".delete input[type='checkbox']", function() { return $(input).children('.toggle').toggle('slow'); }); }); content.find('[data-fileupload]').change(function() { var ext, image_container, input, reader; input = this; image_container = $("#" + input.id).parent().children(".preview"); if (!image_container.length) { image_container = $("#" + input.id).parent().prepend($('').addClass('preview')).find('img.preview'); image_container.parent().find('img:not(.preview)').hide(); } ext = $("#" + input.id).val().split('.').pop().toLowerCase(); if (input.files && input.files[0] && $.inArray(ext, ['gif', 'png', 'jpg', 'jpeg', 'bmp']) !== -1) { reader = new FileReader(); reader.onload = function(e) { return image_container.attr("src", e.target.result); }; reader.readAsDataURL(input.files[0]); return image_container.show(); } else { return image_container.hide(); } }); content.find('[data-filteringmultiselect]').each(function() { $(this).filteringMultiselect($(this).data('options')); if ($(this).parents("#modal").length) { return $(this).parents('.control-group').find('.btn').remove(); } else { return $(this).parents('.control-group').first().remoteForm(); } }); content.find('[data-filteringselect]').each(function() { $(this).filteringSelect($(this).data('options')); if ($(this).parents("#modal").length) { return $(this).parents('.control-group').find('.btn').remove(); } else { return $(this).parents('.control-group').first().remoteForm(); } }); content.find('[data-nestedmany]').each(function() { var field, nav, tab_content, toggler; field = $(this).parents('.control-group').first(); nav = field.find('> .controls > .nav'); tab_content = field.find('> .tab-content'); toggler = field.find('> .controls > .btn-group > .toggler'); tab_content.children('.fields:not(.tab-pane)').addClass('tab-pane').each(function() { $(this).attr('id', 'unique-id-' + (new Date().getTime()) + Math.floor(Math.random() * 100000)); return nav.append('
  • ' + $(this).children('.object-infos').data('object-label') + '
  • '); }); if (nav.find("> li.active").length === 0) { nav.find("> li > a[data-toggle='tab']:first").tab('show'); } if (nav.children().length === 0) { nav.hide(); tab_content.hide(); return toggler.addClass('disabled').removeClass('active').children('i').addClass('icon-chevron-right'); } else { if (toggler.hasClass('active')) { nav.show(); tab_content.show(); return toggler.children('i').addClass('icon-chevron-down'); } else { nav.hide(); tab_content.hide(); return toggler.children('i').addClass('icon-chevron-right'); } } }); content.find('[data-nestedone]').each(function() { var field, first_tab, nav, tab_content, toggler; field = $(this).parents('.control-group').first(); nav = field.find("> .controls > .nav"); tab_content = field.find("> .tab-content"); toggler = field.find('> .controls > .btn-group > .toggler'); tab_content.children(".fields:not(.tab-pane)").addClass('tab-pane active').each(function() { field.find('> .controls .add_nested_fields').removeClass('add_nested_fields').html($(this).children('.object-infos').data('object-label')); return nav.append('
  • ' + $(this).children('.object-infos').data('object-label') + '
  • '); }); first_tab = nav.find("> li > a[data-toggle='tab']:first"); first_tab.tab('show'); field.find("> .controls > [data-target]:first").html(' ' + first_tab.html()); nav.hide(); if (nav.children().length === 0) { nav.hide(); tab_content.hide(); return toggler.addClass('disabled').removeClass('active').children('i').addClass('icon-chevron-right'); } else { if (toggler.hasClass('active')) { toggler.children('i').addClass('icon-chevron-down'); return tab_content.show(); } else { toggler.children('i').addClass('icon-chevron-right'); return tab_content.hide(); } } }); content.find('[data-polymorphic]').each(function() { var field, object_select, type_select, urls; type_select = $(this); field = type_select.parents('.control-group').first(); object_select = field.find('select').last(); urls = type_select.data('urls'); return type_select.on('change', function(e) { if ($(this).val() === '') { return object_select.html(''); } else { return $.ajax({ url: urls[type_select.val()], data: { compact: true, all: true }, beforeSend: function(xhr) { return xhr.setRequestHeader("Accept", "application/json"); }, success: function(data, status, xhr) { var html; html = ''; $(data).each(function(i, el) { return html += ''; }); return object_select.html(html); } }); } }); }); goCkeditors = function() { return content.find('[data-richtext=ckeditor]').not('.ckeditored').each(function(index, domEle) { var instance; try { if (instance = window.CKEDITOR.instances[this.id]) { instance.destroy(true); } } catch (_error) {} window.CKEDITOR.replace(this, $(this).data('options')); return $(this).addClass('ckeditored'); }); }; $editors = content.find('[data-richtext=ckeditor]').not('.ckeditored'); if ($editors.length) { if (!window.CKEDITOR) { options = $editors.first().data('options'); window.CKEDITOR_BASEPATH = options['base_location']; $.getScript(options['jspath'], (function(_this) { return function(script, textStatus, jqXHR) { return goCkeditors(); }; })(this)); } else { goCkeditors(); } } goCodeMirrors = (function(_this) { return function(array) { return array.each(function(index, domEle) { var textarea; options = $(this).data('options'); textarea = this; return $.getScript(options['locations']['mode'], function(script, textStatus, jqXHR) { $('head').append(''); CodeMirror.fromTextArea(textarea, options['options']); return $(textarea).addClass('codemirrored'); }); }); }; })(this); array = content.find('[data-richtext=codemirror]').not('.codemirrored'); if (array.length) { this.array = array; if (!window.CodeMirror) { options = $(array[0]).data('options'); $('head').append(''); $.getScript(options['jspath'], (function(_this) { return function(script, textStatus, jqXHR) { return goCodeMirrors(_this.array); }; })(this)); } else { goCodeMirrors(this.array); } } goBootstrapWysihtml5s = (function(_this) { return function(array, config_options) { return array.each(function() { $(this).addClass('bootstrap-wysihtml5ed'); $(this).closest('.controls').addClass('well'); return $(this).wysihtml5(config_options); }); }; })(this); array = content.find('[data-richtext=bootstrap-wysihtml5]').not('.bootstrap-wysihtml5ed'); if (array.length) { this.array = array; options = $(array[0]).data('options'); config_options = $.parseJSON(options['config_options']); if (!window.wysihtml5) { $('head').append(''); return $.getScript(options['jspath'], (function(_this) { return function(script, textStatus, jqXHR) { return goBootstrapWysihtml5s(_this.array, config_options); }; })(this)); } else { return goBootstrapWysihtml5s(this.array, config_options); } } } }); }).call(this); ;TI"dependency_digest;TI"%b256a949ed615c57419ad740d2d14f54;FI"required_paths;T[I"x/Users/jirikolarik/.rvm/gems/ruby-2.1.1/gems/rails_admin-0.6.1/app/assets/javascripts/rails_admin/ra.widgets.coffee;FI"dependency_paths;T[{I" path;TI"x/Users/jirikolarik/.rvm/gems/ruby-2.1.1/gems/rails_admin-0.6.1/app/assets/javascripts/rails_admin/ra.widgets.coffee;FI" mtime;TI"2014-03-03T22:18:36+01:00;TI" digest;TI"%6219ea532650884efb0661eeddb2d056;FI" _version;TI"%a56df69ef97ba4d9f1a23bf9b0add58a;F