Browse Source

Removed unused functions from the old uplaod

Tobias Reich 10 years ago
parent
commit
cf6ea7530e
1 changed files with 0 additions and 21 deletions
  1. 0 21
      assets/js/upload.js

+ 0 - 21
assets/js/upload.js

@@ -16,26 +16,6 @@ upload = {
 
 	},
 
-	setIcon: function(icon) {
-
-		$(".upload_message a").remove();
-		$(".upload_message").prepend("<a class='icon-" + icon + "'></a>");
-
-	},
-
-	setProgress: function(progress) {
-
-		$(".progressbar div").css("width", progress + "%");
-
-	},
-
-	setText: function(text) {
-
-		$(".progressbar").remove();
-		$(".upload_message").append("<p>" + text + "</p>");
-
-	},
-
 	notify: function(title, text) {
 
 		var popup;
@@ -404,7 +384,6 @@ upload = {
 		if (force===true) {
 			$(".upload_overlay").remove();
 		} else {
-			upload.setProgress(100);
 			$(".upload_overlay").removeClass("fadeIn").css("opacity", 0);
 			setTimeout(function() { $(".upload_overlay").remove() }, 300);
 		}