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) {
|
2011-01-12 15:54:09 +00:00
|
|
|
parser = (parser || 'Liquid') + 'Parser';
|
2010-07-23 20:20:09 +00:00
|
|
|
|
|
|
|
var editor = CodeMirror.fromTextArea(el.attr('id'), {
|
2011-06-01 21:43:12 +00:00
|
|
|
height: el.hasClass('small') ? '60px' : '400px',
|
2010-07-23 20:20:09 +00:00
|
|
|
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"],
|
2011-01-12 15:54:09 +00:00
|
|
|
basefiles: '/javascripts/admin/plugins/codemirror/codemirror_base.min.js',
|
2010-07-23 20:20:09 +00:00
|
|
|
continuousScanning: 500,
|
|
|
|
reindentOnLoad: true,
|
|
|
|
initCallback: function(editor) {
|
2011-01-12 15:54:09 +00:00
|
|
|
jQuery(editor.frame.contentDocument).keydown(function(event) {
|
2010-07-23 20:20:09 +00:00
|
|
|
jQuery(document).trigger(event);
|
|
|
|
});
|
2011-01-12 15:54:09 +00:00
|
|
|
editor.setParser(parser);
|
2010-07-23 20:20:09 +00:00
|
|
|
}
|
|
|
|
});
|
2011-01-12 15:54:09 +00:00
|
|
|
|
2010-07-23 20:20:09 +00:00
|
|
|
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',
|
2011-06-21 12:47:11 +00:00
|
|
|
plugins: 'safari,inlinepopups,locomedia',
|
2011-06-21 20:03:24 +00:00
|
|
|
extended_valid_elements: 'iframe[width|height|frameborder|allowfullscreen|src|title]',
|
2010-09-15 00:19:34 +00:00
|
|
|
theme_advanced_buttons1 : 'code,|,bold,italic,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,blockquote,|,link,unlink',
|
2011-06-21 12:47:11 +00:00
|
|
|
theme_advanced_buttons2 : 'formatselect,fontselect,fontsizeselect,|,locomedia',
|
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',
|
2011-02-12 14:00:57 +00:00
|
|
|
inlinepopups_skin: 'locomotive',
|
|
|
|
convert_urls: false
|
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
|
2011-03-03 22:51:07 +00:00
|
|
|
$('#submenu ul li.hoverable').hover(function() {
|
|
|
|
$(this).find('a').addClass('hover');
|
2010-07-23 20:20:09 +00:00
|
|
|
$(this).find('.popup').show();
|
|
|
|
}, function() {
|
2011-03-03 22:51:07 +00:00
|
|
|
$(this).find('a').removeClass('hover');
|
2010-07-23 20:20:09 +00:00
|
|
|
$(this).find('.popup').hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
if ((css = $('#submenu > ul').attr('class')) != '')
|
|
|
|
$('#submenu > ul > li.' + css).addClass('on');
|
|
|
|
|
|
|
|
// form
|
2011-05-20 13:27:07 +00:00
|
|
|
$('.formtastic li input, .formtastic li textarea, .formtastic li code, .formtastic li select').focus(function() {
|
2010-07-23 20:20:09 +00:00
|
|
|
$('.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();
|
|
|
|
|
2011-01-12 15:54:09 +00:00
|
|
|
// nifty code editor
|
|
|
|
$('code.html textarea').each(function() { addCodeMirrorEditor('liquid', $(this)); });
|
|
|
|
|
2010-07-23 20:20:09 +00:00
|
|
|
// 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();
|
|
|
|
|
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
|
|
|
});
|