diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/video_upload/video_upload.js | 11 | ||||
-rw-r--r-- | plugins/video_upload/video_upload.module | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/plugins/video_upload/video_upload.js b/plugins/video_upload/video_upload.js index bed69a0..d5726c0 100644 --- a/plugins/video_upload/video_upload.js +++ b/plugins/video_upload/video_upload.js @@ -14,13 +14,22 @@ 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(video_upload_hide); + $('#node-form').submit(Drupal.video_upload_hide); } // Global killswitch diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module index d0a82f0..5424ef7 100644 --- a/plugins/video_upload/video_upload.module +++ b/plugins/video_upload/video_upload.module @@ -371,6 +371,7 @@ function theme_video_upload_busy() { return '<div id="sending" style="display: none;"> <h3>' . t('Sending video... please wait.') . '</h3> <img src="'. drupal_get_path('module', 'video_upload') . '/busy.gif" alt="' . t('Sending video... please wait.') . '"/> + <p>'. t('Video upload could take some minutes.') . '<br /><a href="#" id="video_upload_cancel_link">abort upload.</a></p> </div>'; } |