Skip to content

Commit 93f1e46

Browse files
committed
Merge pull request #459 from twbs/eqnull
Remove `eqnull` relaxing option.
2 parents 3b43da1 + 6f0de82 commit 93f1e46

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

dist/js/ratchet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
popover = null;
105105
}
106106

107-
if (popover == null) {
107+
if (popover === null) {
108108
return;
109109
}
110110

dist/js/ratchet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dist/js/ratchet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
popover = null;
105105
}
106106

107-
if (popover == null) {
107+
if (popover === null) {
108108
return;
109109
}
110110

docs/dist/js/ratchet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/.jshintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"browser" : true,
44
"devel" : true,
55
"eqeqeq" : true,
6-
"eqnull" : true,
76
"expr" : true,
87
"forin" : true,
98
"freeze" : true,

js/popovers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
popover = null;
5656
}
5757

58-
if (popover == null) {
58+
if (popover === null) {
5959
return;
6060
}
6161

0 commit comments

Comments
 (0)