updated clipbucket.js

This commit is contained in:
sajjadcb 2014-02-13 11:46:48 +00:00
parent 64741b3c58
commit bb82850e5c
3 changed files with 11 additions and 8 deletions

View file

@ -1265,7 +1265,7 @@
this.showAdvanceSearch = function(simple,advance,expandClass,collapseClass){
var simpleObj = $("#"+simple); var advanceObj = $("#"+advance);
var value = $('#SearchType').val();
simpleObj.toggle();
//simpleObj.toggle();
advanceObj.toggle();
if(advanceObj.css('display') == 'block')
advanceObj.children().hide().filter('#'+value).show();

View file

@ -231,6 +231,9 @@ var loading = loading_img+" Loading...";
var hasLoaded = false;
var perc_download = 0;
/* done */
function status_update()
{
@ -1588,13 +1591,12 @@ function decode64(input) {
dataType : 'json',
timeout : 8000,
data : ({ vid : vid}),
success : function(msg)
{
if(!msg.data)
alert("No data");
else
$("#ep_video_container").html(msg.data);
}
success : function(msg){
if(!msg.data)
alert("No data");
else
$("#ep_video_container").html(msg.data);
}
});
}

View file

@ -25,4 +25,5 @@ function display_tab(Li,divid)
current_tab = Li;
current_div = divid;
return false;
}