@@ -116,7 +116,6 @@ export const importProjectDialog = {
116
116
* Reset the Open Project dialog filename field
117
117
*/
118
118
reset : function ( ) {
119
- logConsoleMessage ( `Project import - setting dialog labels` ) ;
120
119
$ ( '#import-project-dialog-title' ) . html ( getHtmlText ( 'editor_import' ) ) ;
121
120
$ ( '#import-project-dialog span' ) . html ( getHtmlText ( 'editor_append' ) ) ;
122
121
@@ -191,15 +190,13 @@ function openImportProjectDialog() {
191
190
*/
192
191
function closeImportProjectDialog ( ) {
193
192
$ ( '#import-project-dialog' ) . modal ( 'hide' ) ;
194
- logConsoleMessage ( `Closing the 'Import Project' dialog` ) ;
195
193
}
196
194
197
195
/**
198
196
* Set up onClick event handler for the Append button
199
197
*/
200
198
function installAppendClickHandler ( ) {
201
199
$ ( '#selectfile-append' ) . on ( 'click' , function ( ) {
202
- logConsoleMessage ( `Import Append project button clicked` ) ;
203
200
appendProjectCode ( ) ;
204
201
closeImportProjectDialog ( ) ;
205
202
} ) ;
@@ -211,7 +208,6 @@ function installAppendClickHandler() {
211
208
function installReplaceClickHandler ( ) {
212
209
$ ( '#selectfile-replace' ) . on ( 'click' , function ( ) {
213
210
let errorMessage = '' ;
214
- logConsoleMessage ( `Import Replace project button clicked` ) ;
215
211
// Replace the existing project. This is the same as loading a new project
216
212
// Copy the stored temp project to the stored local project
217
213
const projectJson = window . localStorage . getItem ( TEMP_PROJECT_STORE_NAME ) ;
@@ -244,7 +240,6 @@ function installReplaceClickHandler() {
244
240
*/
245
241
function installCancelClickHandler ( ) {
246
242
$ ( '#selectfile-cancel-button' ) . on ( 'click' , function ( ) {
247
- logConsoleMessage ( `Import Project - Cancel button selected` ) ;
248
243
importProjectDialog . clearLocalTempStorage ( ) ;
249
244
closeImportProjectDialog ( ) ;
250
245
} ) ;
@@ -266,7 +261,6 @@ function installEscapeClickHandler() {
266
261
*/
267
262
function installOnFocusHandler ( ) {
268
263
$ ( '#selectfile' ) . focus ( function ( ) {
269
- logConsoleMessage ( `Resetting select file validation messages` ) ;
270
264
$ ( '#selectfile-verify-notvalid' ) . css ( 'display' , 'none' ) ;
271
265
$ ( '#selectfile-verify-valid' ) . css ( 'display' , 'none' ) ;
272
266
$ ( '#selectfile-verify-boardtype' ) . css ( 'display' , 'none' ) ;
0 commit comments