Skip to content

Commit b19070b

Browse files
authored
Merge pull request #628 from parallaxinc/patch_1.5.11-noisy_dialogs
Remove noisy logging messages before release.
2 parents fc60b79 + 7dae190 commit b19070b

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/modules/dialogs/import_project.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ export const importProjectDialog = {
116116
* Reset the Open Project dialog filename field
117117
*/
118118
reset: function() {
119-
logConsoleMessage(`Project import - setting dialog labels`);
120119
$('#import-project-dialog-title').html(getHtmlText('editor_import'));
121120
$('#import-project-dialog span').html(getHtmlText('editor_append'));
122121

@@ -191,15 +190,13 @@ function openImportProjectDialog() {
191190
*/
192191
function closeImportProjectDialog() {
193192
$('#import-project-dialog').modal('hide');
194-
logConsoleMessage(`Closing the 'Import Project' dialog`);
195193
}
196194

197195
/**
198196
* Set up onClick event handler for the Append button
199197
*/
200198
function installAppendClickHandler() {
201199
$('#selectfile-append').on('click', function() {
202-
logConsoleMessage(`Import Append project button clicked`);
203200
appendProjectCode();
204201
closeImportProjectDialog();
205202
});
@@ -211,7 +208,6 @@ function installAppendClickHandler() {
211208
function installReplaceClickHandler() {
212209
$('#selectfile-replace').on('click', function() {
213210
let errorMessage = '';
214-
logConsoleMessage(`Import Replace project button clicked`);
215211
// Replace the existing project. This is the same as loading a new project
216212
// Copy the stored temp project to the stored local project
217213
const projectJson = window.localStorage.getItem(TEMP_PROJECT_STORE_NAME);
@@ -244,7 +240,6 @@ function installReplaceClickHandler() {
244240
*/
245241
function installCancelClickHandler() {
246242
$('#selectfile-cancel-button').on('click', function() {
247-
logConsoleMessage(`Import Project - Cancel button selected`);
248243
importProjectDialog.clearLocalTempStorage();
249244
closeImportProjectDialog();
250245
});
@@ -266,7 +261,6 @@ function installEscapeClickHandler() {
266261
*/
267262
function installOnFocusHandler() {
268263
$('#selectfile').focus(function() {
269-
logConsoleMessage(`Resetting select file validation messages`);
270264
$('#selectfile-verify-notvalid').css('display', 'none');
271265
$('#selectfile-verify-valid').css('display', 'none');
272266
$('#selectfile-verify-boardtype').css('display', 'none');

src/modules/utility.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ const utils = {
8888
},
8989
},
9090
callback: function(result) {
91-
console.log('This was logged in the callback: ' + result);
9291
if (callback) {
9392
callback(result);
9493
}

0 commit comments

Comments
 (0)