diff options
author | Heshan Wanigasooriya <heshanmw@gmail.com> | 2011-01-08 05:44:36 +0000 |
---|---|---|
committer | Heshan Wanigasooriya <heshanmw@gmail.com> | 2011-01-08 05:44:36 +0000 |
commit | 42bb65a75da1adb88f07d01677e2b80ee6b59039 (patch) | |
tree | 410dfbc2a1a02e31ba6b25bceb92b6cbf6621d93 /js | |
parent | 60fe72098ba214aa6a6f5860ad8411a7bbb1f8dd (diff) | |
download | video-42bb65a75da1adb88f07d01677e2b80ee6b59039.tar.gz video-42bb65a75da1adb88f07d01677e2b80ee6b59039.tar.bz2 |
Adding namespace to the video module variables
Diffstat (limited to 'js')
-rw-r--r-- | js/video.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/js/video.js b/js/video.js index 015724f..7610d24 100644 --- a/js/video.js +++ b/js/video.js @@ -13,19 +13,19 @@ $(document).ready(function() { } video_hide_all_options(); - $("input[name='vid_convertor']").change(function() { + $("input[name='video_convertor']").change(function() { video_hide_all_options(); }); // change metadata options video_hide_all__metadata_options(); - $("input[name='vid_metadata']").change(function() { + $("input[name='video_metadata']").change(function() { video_hide_all__metadata_options(); }); // change metadata options video_hide_all__filesystem_options(); - $("input[name='vid_filesystem']").change(function() { + $("input[name='video_filesystem']").change(function() { video_hide_all__filesystem_options(); }); @@ -80,7 +80,7 @@ $(document).ready(function() { }); function video_hide_all_options() { - $("input[name='vid_convertor']").each(function() { + $("input[name='video_convertor']").each(function() { var id = $(this).val(); $('#'+id).hide(); if ($(this).is(':checked')) { @@ -102,7 +102,7 @@ function videoftp_thumbnail_change() { } function video_hide_all__metadata_options() { - $("input[name='vid_metadata']").each(function() { + $("input[name='video_metadata']").each(function() { var id = $(this).val(); $('#'+id).hide(); if ($(this).is(':checked')) { @@ -112,7 +112,7 @@ function video_hide_all__metadata_options() { } function video_hide_all__filesystem_options() { - $("input[name='vid_filesystem']").each(function() { + $("input[name='video_filesystem']").each(function() { var id = $(this).val(); $('#'+id).hide(); if ($(this).is(':checked')) { |