summaryrefslogtreecommitdiff
path: root/js/live/liveajax.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/live/liveajax.js')
-rw-r--r--js/live/liveajax.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/js/live/liveajax.js b/js/live/liveajax.js
deleted file mode 100644
index a6a80ea..0000000
--- a/js/live/liveajax.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
- * Javascript function for quick ajax requests.
- * This file needs mootools.js to be included on the pages.
- */
-
-function LiveSimpleAjaxRequest(url, param, value)
-{
- var req = new Ajax(url, {
- method : 'post'
- }).request(param + '=' + value);
-};