Commit 23c79f9b by Dányi Bence

webui: fix jquery bug :o (store works in firefox again)

parent 3c45198a
......@@ -217,7 +217,12 @@ var cloud = (function(cloud) {
* After 'addFile', this function animates the new item
*/
self.fadeIn = function(e) {
$(e).hide().slideDown(500);
//firefox sucks :S
try{
$(e).hide().slideDown(500);
}catch(ex){
}
}
self.fadeOutFile = function(e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment