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

Commit

Permalink
editor: 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 May 17, 2016
1 parent 052b569 commit 59fe71c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions client/js/controllers/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -607,8 +607,6 @@
if (filePath) {
body = editor.getSession().getValue();
}
console.log(filePath);
console.log(body);
var fbp_name = $scope.file_name;
if (fbp_name.substr(fbp_name.length - 4) !== ".fbp") {
fbp_name = fbp_name + ".fbp";
Expand Down Expand Up @@ -675,7 +673,6 @@
$(".ui-dialog-titlebar-close").hide();
dialog.keyup(function(e) {
if (e.keyCode === $.ui.keyCode.ENTER) {
console.log("Import");
$(".ui-dialog-buttonpane button:contains('Import')").click();
}
});
Expand Down Expand Up @@ -737,7 +734,6 @@
open: function(event, ui) {
dialog.keyup(function(e) {
if (e.keyCode === $.ui.keyCode.ENTER) {
console.log("Import");
$(".ui-dialog-buttonpane button:contains('Create')").click();
}
});
Expand Down Expand Up @@ -797,7 +793,6 @@
open: function(event, ui) {
dialog.keyup(function(e) {
if (e.keyCode === $.ui.keyCode.ENTER) {
console.log("Import");
$(".ui-dialog-buttonpane button:contains('Create')").click();
}
});
Expand Down

0 comments on commit 59fe71c

Please sign in to comment.