diff --git a/js/hookLiveEdit.js b/js/hookLiveEdit.js index 5fe527ce7..b7b7b1239 100644 --- a/js/hookLiveEdit.js +++ b/js/hookLiveEdit.js @@ -66,7 +66,7 @@ $(document).ready(function() { }); $('.add_module_live_edit').unbind('click').click(function() { - $("#live_edit_feedback_str").html('
'); + $("#live_edit_feedback_str").html('
'); $("#fancy").attr('href', '#live_edit_feedback'); $("#fancy").trigger("click"); var id = $(this).attr('id'); @@ -168,7 +168,7 @@ function getHookableList() { hookable_list = jsonData;// create and fill input array }, error: function(XMLHttpRequest, textStatus, errorThrown) { - $('#live_edit_feedback_str').html('

TECHNICAL ERROR:

' + loadFail + '

' + close + '
'); + $('#live_edit_feedback_str').html('

TECHNICAL ERROR:

' + loadFail + '

' + close + '
'); $("#fancy").attr('href', '#live_edit_feedback'); $("#fancy").trigger("click"); } @@ -204,7 +204,7 @@ function getHookableModuleList(hook) { function saveModulePosition() { $("input.dynamic-input-save-position").remove(); - $("#live_edit_feedback_str").html('
'); + $("#live_edit_feedback_str").html('
'); $("#fancy").attr('href', '#live_edit_feedback'); $("#fancy").trigger("click"); var str = ''; @@ -228,12 +228,12 @@ function saveModulePosition() dataType: 'json', data: datas, success: function(jsonData) { - $('#live_edit_feedback_str').html('

' + saveOK + '

' + close + '
'); + $('#live_edit_feedback_str').html('

' + saveOK + '

' + close + '
'); timer = setTimeout("hideFeedback()", 3000); has_been_moved = false; }, error: function(XMLHttpRequest, textStatus, errorThrown) { - $('#live_edit_feedback_str').html('

TECHNICAL ERROR:

' + unableToSaveModulePosition + '

' + close + '
'); + $('#live_edit_feedback_str').html('

TECHNICAL ERROR:

' + unableToSaveModulePosition + '

' + close + '
'); } } )