engine/public/javascripts/admin/theme_assets.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2010-05-11 21:38:52 +00:00
/* ___ file or text ___ */
var enableFileOrTextToggling = function() {
$('div.hidden').hide();
2010-05-11 21:38:52 +00:00
$('span.alt').click(function(event) {
event.preventDefault();
if ($("div#file-selector").is(":hidden")) {
$("div#text-selector").slideUp("normal", function() {
$("div#file-selector").slideDown();
$("input#theme_asset_performing_plain_text").val(false);
});
2010-05-11 21:38:52 +00:00
} else {
$("div#file-selector").slideUp("normal", function() {
$("div#text-selector").slideDown();
$("input#theme_asset_performing_plain_text").val(true);
});
2010-05-11 21:38:52 +00:00
}
});
2010-06-02 00:39:05 +00:00
}
2010-05-11 21:38:52 +00:00
$(document).ready(function() {
enableFileOrTextToggling();
$('code.stylesheet textarea').each(function() {
addCodeMirrorEditor(null, $(this), ["tokenizejavascript.js", "parsejavascript.js", "parsecss.js"]);
});
$('code.javascript textarea').each(function() {
addCodeMirrorEditor(null, $(this), ["parsecss.js", "tokenizejavascript.js", "parsejavascript.js"]);
});
$('select#theme_asset_content_type').bind('change', function() {
var editor = CodeMirrorEditors[0].editor;
editor.setParser($(this).val() == 'stylesheet' ? 'CSSParser' : 'JSParser');
});
$('a#image-picker-link').imagepicker({
insertFn: function(link) {
return link.attr('data-shortcut-url');
}
});
});