summaryrefslogtreecommitdiff
path: root/themes/default/js
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-27 06:14:32 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-27 06:14:32 +0000
commit27e64f1dc6cc43b40592337eed360bdf7e3d7a59 (patch)
treef127c76bff448c546a30753b466cf909bb42ca7d /themes/default/js
parent7e5f59bcb7682896657dd11a530dc25412ef3cdc (diff)
Move javascript from default theme to appropriate modules
Diffstat (limited to 'themes/default/js')
-rw-r--r--themes/default/js/comment.js19
-rw-r--r--themes/default/js/user.js38
2 files changed, 0 insertions, 57 deletions
diff --git a/themes/default/js/comment.js b/themes/default/js/comment.js
deleted file mode 100644
index 259b4826..00000000
--- a/themes/default/js/comment.js
+++ /dev/null
@@ -1,19 +0,0 @@
-$("document").ready(function() {
- ajaxify_comment_form();
-});
-
-function ajaxify_comment_form() {
- $("#gComments form").ajaxForm({
- complete: function(xhr, statusText) {
- $("#gComments form").replaceWith(xhr.responseText);
- if (xhr.status == 201) {
- $.get(xhr.getResponseHeader("Location"), function(data, textStatus) {
- $("#gComments .gBlockContent ul:first").append("<li>"+data+"</li>");
- $("#gComments .gBlockContent ul:first li:last").hide().slideDown();
- });
- $("#gComments form").clearForm();
- }
- ajaxify_comment_form();
- }
- });
-}
diff --git a/themes/default/js/user.js b/themes/default/js/user.js
deleted file mode 100644
index 8ee543bf..00000000
--- a/themes/default/js/user.js
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * @todo preventDefault() not working in IE 6 and 7
- * @todo Close link should be reusable
- */
-
-$("document").ready(function() {
- $("#gLoginLink").click(function(event){
- event.preventDefault();
- var url = $("#gLoginLink a").attr("href");
- $.get(url, function(data) {
- $('#gLoginLink').hide();
- $("#gLoginMenu").append('<li><a href="#">X</a></li>');
- $("#gLoginMenu li:last").addClass("gClose").show();
- $("#gLoginMenu .gClose a").click(function(){
- $("#gLoginForm").remove();
- $("#gLoginMenu .gClose").remove();
- $("#gLoginLink").show();
- $("input#gUsername").val("");
- $("input#gPassword").val("");
- });
- $("#gLoginFormContainer").html(data).hide().fadeIn();
- ajaxify_login_form();
- });
- });
-});
-
-function ajaxify_login_form() {
- $("form#gLoginForm").ajaxForm({
- target: "#gLoginFormContainer",
- success: function(responseText, statusText) {
- if (!responseText) {
- window.location.reload();
- } else {
- ajaxify_login_form();
- }
- }
- });
-}