File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11/*
22Author: Teeraphat Kullanankanjana
3- Version: 0.0.3
3+ Version: 0.0.4
44*/
55
66function doGet ( e ) {
@@ -120,7 +120,7 @@ function doGet(e) {
120120
121121 var heading = "" ;
122122 for ( var i = 0 ; i < values . length ; i ++ ) {
123- heading += values [ i ] + " " ;
123+ heading += values [ i ] + ", " ;
124124 }
125125
126126 var html = "<html><head><title>Get Row Data</title></head><body><h1>start</h1><h1>" + heading + "</h1><h1>finish</h1></body></html>" ;
@@ -134,7 +134,7 @@ else if (mode == "getColumn") {
134134 var values = range . getValues ( ) ;
135135 var heading = "" ;
136136 for ( var i = 0 ; i < values . length ; i ++ ) {
137- heading += values [ i ] + " " ;
137+ heading += values [ i ] + ", " ;
138138 }
139139
140140 var html = "<html><head><title>Get Column Data</title></head><body><h1>start</h1><h1>" + heading + "</h1><h1>finish</h1></body></html>" ;
You can’t perform that action at this time.
0 commit comments