Skip to content

Commit f21462a

Browse files
authored
Delint triggers.gs
Change == to === where appropriate.
1 parent 091a4c1 commit f21462a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

triggers/triggers.gs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ function onEdit(e) {
3232
function onSelectionChange(e) {
3333
// Set background to red if a single empty cell is selected.
3434
var range = e.range;
35-
if(range.getNumRows() == 1
36-
&& range.getNumColumns() == 1
37-
&& range.getCell(1, 1).getValue() == "") {
35+
if(range.getNumRows() === 1
36+
&& range.getNumColumns() === 1
37+
&& range.getCell(1, 1).getValue() === "") {
3838
range.setBackground("red");
3939
}
4040
}

0 commit comments

Comments
 (0)