2010-04-25 00:33:38 +00:00
|
|
|
var I18nLocale = null;
|
2010-05-02 23:33:17 +00:00
|
|
|
var CodeMirrorEditors = [];
|
2010-04-25 00:33:38 +00:00
|
|
|
|
|
|
|
/* ___ growl ___ */
|
|
|
|
|
|
|
|
$.growl.settings.noticeTemplate = '' +
|
2010-07-23 20:20:09 +00:00
|
|
|
'<div class="notice %title%">' +
|
|
|
|
' <p>%message%</p>' +
|
|
|
|
'</div>';
|
|
|
|
|
2010-04-25 00:33:38 +00:00
|
|
|
$.growl.settings.dockCss = {
|
2010-07-23 20:20:09 +00:00
|
|
|
position: 'fixed',
|
|
|
|
bottom: '20px',
|
|
|
|
left: '0px',
|
|
|
|
width: '100%',
|
|
|
|
zIndex: 50000
|
2010-04-25 00:33:38 +00:00
|
|
|
};
|
|
|
|
|
2010-05-02 23:33:17 +00:00
|
|
|
/* ___ codemirror ___ */
|
|
|
|
|
|
|
|
var addCodeMirrorEditor = function(type, el, parser) {
|
2010-07-23 20:20:09 +00:00
|
|
|
if (type == 'liquid') type = 'xml';
|
|
|
|
var parserfile = "parse" + type + ".js";
|
|
|
|
if (parser != undefined) parserfile = parser;
|
|
|
|
|
|
|
|
var editor = CodeMirror.fromTextArea(el.attr('id'), {
|
|
|
|
height: "400px",
|
|
|
|
parserfile: parserfile,
|
|
|
|
stylesheet: [
|
|
|
|
"/stylesheets/admin/plugins/codemirror/csscolors.css",
|
|
|
|
"/stylesheets/admin/plugins/codemirror/xmlcolors.css",
|
|
|
|
"/stylesheets/admin/plugins/codemirror/javascriptcolors.css",
|
|
|
|
"/stylesheets/admin/plugins/codemirror/liquidcolors.css"],
|
|
|
|
path: "/javascripts/admin/plugins/codemirror/",
|
|
|
|
continuousScanning: 500,
|
|
|
|
reindentOnLoad: true,
|
|
|
|
initCallback: function(editor) {
|
|
|
|
jQuery(editor.frame.contentDocument).keypress(function(event) {
|
|
|
|
jQuery(document).trigger(event);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
CodeMirrorEditors.push({ 'el': el, 'editor': editor });
|
2010-05-02 23:33:17 +00:00
|
|
|
}
|
|
|
|
|
2010-06-22 13:04:40 +00:00
|
|
|
/* ___ tinyMCE ___ */
|
|
|
|
|
|
|
|
var TinyMceDefaultSettings = {
|
2010-07-23 20:20:09 +00:00
|
|
|
script_url : '/javascripts/admin/plugins/tiny_mce/tiny_mce.js',
|
|
|
|
theme : 'advanced',
|
2010-09-15 00:21:46 +00:00
|
|
|
skin : 'locomotive',
|
2010-09-15 00:19:34 +00:00
|
|
|
plugins: 'safari,inlinepopups,locoimage',
|
|
|
|
theme_advanced_buttons1 : 'code,|,bold,italic,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,blockquote,|,link,unlink',
|
|
|
|
theme_advanced_buttons2 : 'formatselect,fontselect,fontsizeselect,|,image',
|
2010-09-06 21:47:03 +00:00
|
|
|
theme_advanced_buttons3 : '',
|
|
|
|
theme_advanced_toolbar_location : "top",
|
|
|
|
theme_advanced_toolbar_align : "left",
|
|
|
|
height: '300',
|
|
|
|
width: '710',
|
|
|
|
inlinepopups_skin: 'locomotive'
|
2010-06-22 13:04:40 +00:00
|
|
|
};
|
|
|
|
|
2010-04-25 00:33:38 +00:00
|
|
|
/* ___ global ___ */
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
2010-07-23 20:20:09 +00:00
|
|
|
I18nLocale = $('meta[name=locale]').attr('content');
|
|
|
|
|
2010-09-06 21:47:03 +00:00
|
|
|
TinyMceDefaultSettings['language'] = I18nLocale;
|
|
|
|
|
2010-07-23 20:20:09 +00:00
|
|
|
// sub menu links
|
|
|
|
$('#submenu ul li.links').hover(function() {
|
|
|
|
$(this).addClass('hover');
|
|
|
|
$(this).find('.popup').show();
|
|
|
|
}, function() {
|
|
|
|
$(this).removeClass('hover');
|
|
|
|
$(this).find('.popup').hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
if ((css = $('#submenu > ul').attr('class')) != '')
|
|
|
|
$('#submenu > ul > li.' + css).addClass('on');
|
|
|
|
|
|
|
|
// form
|
|
|
|
$('.formtastic li input, .formtastic li textarea, .formtastic li code').focus(function() {
|
|
|
|
$('.formtastic li.error:not(.code) p.inline-errors').fadeOut(200);
|
|
|
|
if ($(this).parent().hasClass('error')) {
|
|
|
|
$(this).nextAll('p.inline-errors').show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('.formtastic li.error input').eq(0).focus();
|
|
|
|
|
|
|
|
// save form in AJAX
|
|
|
|
$('form.save-with-shortcut').saveWithShortcut();
|
|
|
|
|
|
|
|
// editable title (page, ...etc)
|
|
|
|
$('#content h2 a.editable').each(function() {
|
|
|
|
var target = $('#' + $(this).attr('rel')),
|
|
|
|
hint = $(this).attr('title');
|
|
|
|
|
|
|
|
target.parent().hide();
|
|
|
|
|
|
|
|
$(this).click(function(event) {
|
|
|
|
var newValue = prompt(hint, $(this).html());
|
|
|
|
if (newValue && newValue != '') {
|
|
|
|
$(this).html(newValue);
|
|
|
|
target.val(newValue);
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// foldable
|
|
|
|
$('.formtastic fieldset.foldable legend span').append('<em> </em>');
|
|
|
|
$('.formtastic fieldset.foldable.folded ol').hide();
|
|
|
|
$('.formtastic fieldset.foldable legend').click(function() {
|
|
|
|
var parent = $(this).parent(), content = $(this).next();
|
|
|
|
if (parent.hasClass('folded')) {
|
|
|
|
parent.removeClass('folded');
|
|
|
|
content.slideDown('fast', function() { });
|
|
|
|
} else
|
|
|
|
content.slideUp('fast', function() { parent.addClass('folded'); });
|
|
|
|
});
|
|
|
|
|
|
|
|
// nifty checkboxes
|
|
|
|
$('.formtastic li.toggle input[type=checkbox]').checkToggle();
|
|
|
|
|
|
|
|
// nifty code editor
|
|
|
|
$('code.html textarea').each(function() { addCodeMirrorEditor('liquid', $(this)); });
|
2010-07-28 00:42:33 +00:00
|
|
|
|
|
|
|
// site selector
|
2010-09-28 22:08:11 +00:00
|
|
|
$('#site-selector').selectmenu({ style: 'dropdown', width: 395, offsetTop: 8, change: function(event, ui) {
|
2010-07-28 10:17:56 +00:00
|
|
|
$('#site-selector').parent().submit();
|
2010-07-28 00:42:33 +00:00
|
|
|
} });
|
|
|
|
|
2010-07-23 20:20:09 +00:00
|
|
|
});
|