Sha256: 347774f9b3a6ee8ed3d92cd470543314443391be780ef74dfedd1ade98009e25
Contents?: true
Size: 700 Bytes
Versions: 2
Compression:
Stored size: 700 Bytes
Contents
//= require jquery //= require jquery_ujs //= require tinymce-jquery //= require_tree . $(function() { $('.tinymce').tinymce({}); $('#content_block_allow_html').change(function() { if ($(this).is(':checked')) { $('#content_block_content').tinymce({}); } else { $('#content_block_content_container').remove(); $('#content_block_content').css('display', 'inline-block'); $('#content_block_content').attr('aria-hidden', 'false'); } }) $(".nav-select").change(function() { window.location = $(this).find("option:selected").val(); }); $('a:not([data-remote]):not([data-behavior]):not([data-skip-pjax])').pjax('.app-content', { timeout: 10000 }); })
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
manifest-rails-0.2.1 | app/assets/javascripts/manifest/main.js |
manifest-rails-0.2.0 | app/assets/javascripts/manifest/main.js |