Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ angular.module('streama').controller('adminVideosCtrl', ['$scope', 'apiService',
};

$scope.alreadyAdded = function (movie) {
console.log('%c movie', 'color: deeppink; font-weight: bold; text-shadow: 0 0 5px deeppink;', movie);
return movie.id && _.find($scope.movies, {apiId: movie.id.toString()});
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ angular.module('streama').factory('uploadService', function ($http, Upload, cont

.success(callback || angular.noop)
.error(function (err) {
console.log('%c err', 'color: deeppink; font-weight: bold; text-shadow: 0 0 5px deeppink;', arguments);
alertify.error("File upload failed. Please close this popup and try again.", 0);
uploadStatus.percentage = null;
(errCallback || angular.noop)(err);
Expand Down