2010-05-10 22:39:52 +00:00
|
|
|
$(document).ready(function() {
|
2010-07-23 20:20:09 +00:00
|
|
|
|
|
|
|
var defaultValue = $('fieldset.editable-list li.template input[type=text]').val();
|
|
|
|
|
|
|
|
/* __ fields ___ */
|
|
|
|
$('fieldset.editable-list li.template input[type=text]').focus(function() {
|
|
|
|
if ($(this).hasClass('void') && $(this).parents('li').hasClass('template'))
|
|
|
|
$(this).val('').removeClass('void');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('fieldset.editable-list li.template button').click(function() {
|
|
|
|
var lastRow = $(this).parents('li.template');
|
|
|
|
|
|
|
|
var currentValue = lastRow.find('input.label').val();
|
|
|
|
if (currentValue == defaultValue || currentValue == '') return;
|
|
|
|
|
|
|
|
var newRow = lastRow.clone(true).removeClass('template').addClass('added').insertBefore(lastRow);
|
|
|
|
|
|
|
|
// should copy the value of the select box
|
2010-08-20 15:56:15 +00:00
|
|
|
var input_name = $('input#current_site_subdomain').attr('name').split('[')[0];
|
2010-07-23 20:20:09 +00:00
|
|
|
var input = newRow.find('input.label')
|
2010-08-20 15:56:15 +00:00
|
|
|
.attr('name', input_name + '[domains][]');
|
2010-07-23 20:20:09 +00:00
|
|
|
if (lastRow.find('input.label').val() == '') input.val("undefined");
|
|
|
|
|
|
|
|
// then reset the form
|
|
|
|
lastRow.find('input').val(defaultValue).addClass('void');
|
|
|
|
lastRow.find('select').val('input');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('fieldset.editable-list li a.remove').click(function(e) {
|
|
|
|
if (confirm($(this).attr('data-confirm')))
|
|
|
|
$(this).parents('li').remove();
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
$.subscribe('form.saved.success', function(event, data) {
|
2010-07-28 00:42:33 +00:00
|
|
|
var value = $('#current_site_name').val();
|
|
|
|
$('#header h1 a.single').html(value);
|
|
|
|
$('#header h1 a span.ui-selectmenu-status').html(value);
|
|
|
|
$('#site-selector-menu li.ui-selectmenu-item-selected a').html(value);
|
2010-07-23 20:20:09 +00:00
|
|
|
}, []);
|
|
|
|
});
|