File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
assets/javascripts/discourse/controllers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ export default Controller.extend({
6868 file : null ,
6969 filename : null ,
7070 } ) ;
71- document . getElementById ( ' custom-wizard-file-upload' ) . value = '' ;
71+ document . getElementById ( " custom-wizard-file-upload" ) . value = "" ;
7272 } ,
7373
7474 @observes ( "importing" , "destroying" )
@@ -83,7 +83,7 @@ export default Controller.extend({
8383
8484 actions : {
8585 upload ( ) {
86- document . getElementById ( ' custom-wizard-file-upload' ) . click ( ) ;
86+ document . getElementById ( " custom-wizard-file-upload" ) . click ( ) ;
8787 } ,
8888
8989 clearFile ( ) {
@@ -102,7 +102,7 @@ export default Controller.extend({
102102 if ( maxFileSize < file . size ) {
103103 this . setMessage ( "error" , "file_size_error" ) ;
104104 this . set ( "file" , null ) ;
105- document . getElementById ( ' custom-wizard-file-upload' ) . value = '' ;
105+ document . getElementById ( " custom-wizard-file-upload" ) . value = "" ;
106106 } else {
107107 this . setProperties ( {
108108 file,
You can’t perform that action at this time.
0 commit comments