2011-12-18 02:07:42 +00:00
|
|
|
$("div.editable").live("mouseenter mouseleave", function (event) {
|
|
|
|
$(this).children('.edit_link').toggle();
|
|
|
|
});
|
|
|
|
|
2012-02-23 07:48:23 +00:00
|
|
|
$("#page_design").live('change', function() {
|
2011-12-18 02:07:42 +00:00
|
|
|
$.getScript($(this).attr('rel') + '/' + $(this).val() + '/reload_themes');
|
2011-12-20 08:47:17 +00:00
|
|
|
});
|
|
|
|
|
2011-12-23 05:54:28 +00:00
|
|
|
$("#page_module_app_id").live('change', function() {
|
2011-12-20 08:47:17 +00:00
|
|
|
var app_id = $(this).val();
|
|
|
|
if(app_id!=''){
|
|
|
|
$.getScript($(this).attr('rel') + '/' + $(this).val() + '/reload_frontend_pages',function(data, textStatus){
|
|
|
|
if(textStatus == 'success'){
|
|
|
|
$(this).after(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else{
|
2011-12-23 05:54:28 +00:00
|
|
|
$("#app_page_url").children().remove();
|
2011-12-20 08:47:17 +00:00
|
|
|
}
|
|
|
|
});
|
2012-02-16 04:16:27 +00:00
|
|
|
|
|
|
|
$("#module_app_list select").live('change', function() {
|
|
|
|
$.getScript($(this).attr('rel') + '/' + $(this).val() + '/reload_widgets');
|
|
|
|
});
|
|
|
|
|
2012-07-26 08:39:29 +00:00
|
|
|
$("#widget_list select").live('change', function() {
|
|
|
|
$.getScript($(this).attr('rel') + '/' + $(this).val() + '/reload_widget_styles?module_app_id=' + $("#module_app_list select").val());
|
|
|
|
});
|
|
|
|
|
2012-04-23 18:30:40 +00:00
|
|
|
$("#tag_list select").live('change', function() {
|
|
|
|
$.getScript($(this).attr('rel') + '/' + $(this).val() + '/reload_r_tag_options');
|
|
|
|
});
|
|
|
|
|
2012-02-16 04:16:27 +00:00
|
|
|
$('.part_kind').live('click', function() {
|
|
|
|
$('.part_kind_partial').hide();
|
|
|
|
$('#part_' + $(this).attr('value')).show();
|
|
|
|
});
|
2012-05-12 14:12:17 +00:00
|
|
|
|
|
|
|
$(document).ready(function(){
|
2012-05-22 09:37:15 +00:00
|
|
|
bindTreeDragHandle();
|
|
|
|
});
|
|
|
|
|
|
|
|
var bindTreeDragHandle = function(){
|
2012-05-12 14:12:17 +00:00
|
|
|
$('ol.sortable').nestedSortable({
|
|
|
|
disableNesting: 'no-nest',
|
|
|
|
forcePlaceholderSize: true,
|
|
|
|
handle: 'i',
|
|
|
|
helper: 'clone',
|
|
|
|
items: 'li',
|
|
|
|
maxLevels: 3,
|
|
|
|
opacity: .5,
|
|
|
|
placeholder: 'placeholder',
|
|
|
|
revert: 250,
|
|
|
|
tabSize: 25,
|
|
|
|
tolerance: 'pointer',
|
|
|
|
toleranceElement: '> div',
|
|
|
|
|
|
|
|
stop: function(event, ui) {
|
|
|
|
$.post("<%= Rails.application.routes.url_helpers.admin_update_position_path %>", { id: ui.item.attr('id'), parent_id: ui.item.parent().closest('li').attr('id'), position: ui.item.index() } );
|
|
|
|
}
|
|
|
|
});
|
2012-05-22 09:37:15 +00:00
|
|
|
}
|