2013-04-01 09:06:10 +00:00
|
|
|
function append_id(){
|
|
|
|
if ($("#object_id").length == 1) {
|
|
|
|
return "&id="+$("#object_id").val();
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
return '';
|
|
|
|
};
|
2013-01-21 08:56:37 +00:00
|
|
|
}
|
|
|
|
|
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() {
|
2013-04-01 09:06:10 +00:00
|
|
|
$.getScript($(this).attr('rel') + '?design_id=' + $(this).val() + append_id());
|
2011-12-20 08:47:17 +00:00
|
|
|
});
|
|
|
|
|
2012-02-16 04:16:27 +00:00
|
|
|
|
|
|
|
$("#module_app_list select").live('change', function() {
|
2013-04-01 09:06:10 +00:00
|
|
|
$.getScript($(this).attr('rel') + '?module_app_id='+$(this).val() + append_id());
|
2012-02-16 04:16:27 +00:00
|
|
|
});
|
|
|
|
|
2013-01-21 08:56:37 +00:00
|
|
|
$("#widget_list select,#frontend_list select").live('change', function() {
|
2013-04-01 09:06:10 +00:00
|
|
|
$.getScript($(this).attr('rel') +'?frontend=' + $(this).val() + '&module_app_id=' + $("#module_app_list select").val() + append_id() );
|
2012-07-26 08:39:29 +00:00
|
|
|
});
|
|
|
|
|
2012-04-23 18:30:40 +00:00
|
|
|
$("#tag_list select").live('change', function() {
|
2013-04-01 09:06:10 +00:00
|
|
|
$.getScript($(this).attr('rel') + '?type=' + $(this).val() + append_id() );
|
2012-04-23 18:30:40 +00:00
|
|
|
});
|
|
|
|
|
2013-02-18 07:13:31 +00:00
|
|
|
$("select.widget_field_select").live('change', function() {
|
2013-04-01 09:06:10 +00:00
|
|
|
$.getScript($(this).attr('rel') + '?widget_field_value='+ $(this).val()+'&dom_id=' + $(this).attr("id") + '&field_seri=' +$(this).attr('field_seri')+ '&module_app_id=' +$("#page_module_app_id,page_part_module_app_id").val() + append_id() );
|
2013-02-18 07:13:31 +00:00
|
|
|
});
|
|
|
|
|
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
|
|
|
}
|