Remove console log

This commit is contained in:
Joseph Schorr 2015-03-04 16:02:26 -05:00
parent c967623ab1
commit 9ccd26cc74

View file

@ -16,7 +16,6 @@ angular.module('quay').directive('markdownView', function () {
controller: function($scope, $element, $sce, UtilService) {
$scope.getMarkedDown = function(content, firstLineOnly) {
if (firstLineOnly) {
console.log($scope.placeholderNeeded);
return $sce.trustAsHtml(UtilService.getFirstMarkdownLineAsText(content, $scope.placeholderNeeded));
}
return $sce.trustAsHtml(UtilService.getMarkedDown(content));