The branch, master has been updated
via f2e9103f5241caf4459401d744ffa637842a7c85 (commit)
from f912476921488562567ee304fa8e1e524a8cc274 (commit)
- Log -----------------------------------------------------------------
commit f2e9103f5241caf4459401d744ffa637842a7c85
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 12:01:22 2011 +0100
Drop not used function
-----------------------------------------------------------------------
Summary of changes:
js/…
[View More]functions.js | 25 -------------------------
1 files changed, 0 insertions(+), 25 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index e445b92..fba8f91 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1482,31 +1482,6 @@ $(document).ready(function(){
});
/**
- * Function to process the plain HTML response from an Ajax request. Inserts
- * the various HTML divisions from the response at the proper locations. The
- * array relates the divisions to be inserted to their placeholders.
- *
- * @param var divisions_map an associative array of id names
- *
- * <code>
- * PMA_ajaxInsertResponse({'resultsTable':'resultsTable_response',
- * 'profilingData':'profilingData_response'});
- * </code>
- *
- */
-
-function PMA_ajaxInsertResponse(divisions_map) {
- $.each(divisions_map, function(key, value) {
- var content_div = '#'+value;
- var target_div = '#'+key;
- var content = $(content_div).html();
-
- //replace content of target_div with that from the response
- $(target_div).html(content);
- });
-};
-
-/**
* Show a message on the top of the page for an Ajax request
*
* @param var message string containing the message to be shown.
hooks/post-receive
--
phpMyAdmin
[View Less]