From 42bb65a75da1adb88f07d01677e2b80ee6b59039 Mon Sep 17 00:00:00 2001 From: Heshan Wanigasooriya Date: Sat, 8 Jan 2011 05:44:36 +0000 Subject: Adding namespace to the video module variables --- js/video.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'js') 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')) { -- cgit v1.2.3