aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_upload/video_upload.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/video_upload/video_upload.js')
-rw-r--r--plugins/video_upload/video_upload.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/video_upload/video_upload.js b/plugins/video_upload/video_upload.js
index 0fd80c1..bed69a0 100644
--- a/plugins/video_upload/video_upload.js
+++ b/plugins/video_upload/video_upload.js
@@ -8,5 +8,22 @@
* @author Fabio Varesano <fvaresano at yahoo dot it>
*/
+/**
+ * Hide the node form and show the busy div
+*/
+Drupal.video_upload_hide = function () {
+ $('#node-form').hide();
+ $("#sending").show();
+}
+/**
+ * Attaches the upload behaviour to the video upload form.
+ */
+Drupal.video_upload = function() {
+ $('#node-form').submit(video_upload_hide);
+}
+// Global killswitch
+if (Drupal.jsEnabled) {
+ $(document).ready(Drupal.video_upload);
+}