From 43d77dbbf99ce1d3fa6a3c23934dabd8c11d96d2 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 18 Jan 2013 12:54:00 -0500 Subject: [PATCH] Improved function order. --- themes/blueprint/js/record.js | 64 +++++++++++++++++------------------ 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/themes/blueprint/js/record.js b/themes/blueprint/js/record.js index 6af84f5a485..1b025385325 100644 --- a/themes/blueprint/js/record.js +++ b/themes/blueprint/js/record.js @@ -45,6 +45,38 @@ function setUpCheckRequest() { }); } +function deleteRecordComment(element, recordId, recordSource, commentId) { + var url = path + '/AJAX/JSON?' + $.param({method:'deleteRecordComment',id:commentId}); + $.ajax({ + dataType: 'json', + url: url, + success: function(response) { + if (response.status == 'OK') { + $($(element).parents('li')[0]).remove(); + } + } + }); +} + +function refreshCommentList(recordId, recordSource) { + var url = path + '/AJAX/JSON?' + $.param({method:'getRecordCommentsAsHTML',id:recordId,'source':recordSource}); + $.ajax({ + dataType: 'json', + url: url, + success: function(response) { + if (response.status == 'OK') { + $('#commentList').empty(); + $('#commentList').append(response.data); + $('#commentList a.deleteRecordComment').unbind('click').click(function() { + var commentId = $(this).attr('id').substr('recordComment'.length); + deleteRecordComment(this, recordId, recordSource, commentId); + return false; + }); + } + } + }); +} + function registerAjaxCommentRecord() { $('form[name="commentRecord"]').unbind('submit').submit(function(){ if (!$(this).valid()) { return false; } @@ -79,38 +111,6 @@ function registerAjaxCommentRecord() { }); } -function deleteRecordComment(element, recordId, recordSource, commentId) { - var url = path + '/AJAX/JSON?' + $.param({method:'deleteRecordComment',id:commentId}); - $.ajax({ - dataType: 'json', - url: url, - success: function(response) { - if (response.status == 'OK') { - $($(element).parents('li')[0]).remove(); - } - } - }); -} - -function refreshCommentList(recordId, recordSource) { - var url = path + '/AJAX/JSON?' + $.param({method:'getRecordCommentsAsHTML',id:recordId,'source':recordSource}); - $.ajax({ - dataType: 'json', - url: url, - success: function(response) { - if (response.status == 'OK') { - $('#commentList').empty(); - $('#commentList').append(response.data); - $('#commentList a.deleteRecordComment').unbind('click').click(function() { - var commentId = $(this).attr('id').substr('recordComment'.length); - deleteRecordComment(this, recordId, recordSource, commentId); - return false; - }); - } - } - }); -} - $(document).ready(function(){ // register the record comment form to be submitted via AJAX registerAjaxCommentRecord(); -- GitLab