From 4caf05931d7bfff98084edcf0c31f5e8c4e38aae Mon Sep 17 00:00:00 2001 From: The Great Git Migration Date: Mon, 27 Apr 2009 09:48:41 +0000 Subject: This commit was manufactured as part of Drupal's Great Git Migration to create branch 'DRUPAL-6--2'. Sprout from master 2009-04-27 09:48:39 UTC Heshan Wanigasooriya 'adding includes files' Delete: plugins/video_upload/busy.gif plugins/video_upload/video_upload.info plugins/video_upload/video_upload.js plugins/video_upload/video_upload.module --- plugins/video_upload/video_upload.js | 38 ------------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 plugins/video_upload/video_upload.js (limited to 'plugins/video_upload/video_upload.js') diff --git a/plugins/video_upload/video_upload.js b/plugins/video_upload/video_upload.js deleted file mode 100644 index d5726c0..0000000 --- a/plugins/video_upload/video_upload.js +++ /dev/null @@ -1,38 +0,0 @@ -// $Id$ -/** - * @file - * Javascript functions for busy status on video uploads - * - * TODO: Support AJAX Uploads :-) - * - * @author Fabio Varesano -*/ - -/** - * Hide the node form and show the busy div -*/ -Drupal.video_upload_hide = function () { - $('#node-form').hide(); - $("#sending").show(); - $("#video_upload_cancel_link").click(Drupal.video_upload_show); -} - -Drupal.video_upload_show = function() { - $('#node-form').show(); - $("#sending").hide(); - - //$("form").bind("submit", function() { return false; }) - window.location = window.location; -} - -/** - * Attaches the upload behaviour to the video upload form. - */ -Drupal.video_upload = function() { - $('#node-form').submit(Drupal.video_upload_hide); -} - -// Global killswitch -if (Drupal.jsEnabled) { - $(document).ready(Drupal.video_upload); -} -- cgit v1.2.3