Remove console log
This commit is contained in:
parent
c967623ab1
commit
9ccd26cc74
1 changed files with 0 additions and 1 deletions
|
@ -16,7 +16,6 @@ angular.module('quay').directive('markdownView', function () {
|
||||||
controller: function($scope, $element, $sce, UtilService) {
|
controller: function($scope, $element, $sce, UtilService) {
|
||||||
$scope.getMarkedDown = function(content, firstLineOnly) {
|
$scope.getMarkedDown = function(content, firstLineOnly) {
|
||||||
if (firstLineOnly) {
|
if (firstLineOnly) {
|
||||||
console.log($scope.placeholderNeeded);
|
|
||||||
return $sce.trustAsHtml(UtilService.getFirstMarkdownLineAsText(content, $scope.placeholderNeeded));
|
return $sce.trustAsHtml(UtilService.getFirstMarkdownLineAsText(content, $scope.placeholderNeeded));
|
||||||
}
|
}
|
||||||
return $sce.trustAsHtml(UtilService.getMarkedDown(content));
|
return $sce.trustAsHtml(UtilService.getMarkedDown(content));
|
||||||
|
|
Reference in a new issue