Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
fix: Remove unused console.log
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Bottazzini <bruno.bottazzini@intel.com>
  • Loading branch information
Bruno Bottazzini committed Jul 25, 2016
1 parent fa2195b commit f2baf1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions client/js/controllers/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,6 @@

function normalizeName(name) {
if (name.charAt(0) === '.') {
console.log(name.substr(1));
return name.substr(1);
} else {
return name;
Expand Down Expand Up @@ -965,7 +964,6 @@
headers:{'Content-Type':undefined}
})
.success(function(d) {
console.log(d);
$scope.refreshTree();
$scope.stopSpin();
$(".ui-dialog-buttonpane button:contains('Cancel')").button("enable");
Expand Down
1 change: 0 additions & 1 deletion server/views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
currentContent = $('#' + (currentMenu).attr('id').substr(5));

currentMenu.addClass('menu-item-selected');
console.log(currentContent);
if (currentContent.attr("id") === "sc") {
show(currentContent);
} else {
Expand Down

0 comments on commit f2baf1c

Please sign in to comment.