Skip to content

Commit

Permalink
Merge pull request #459 from twbs/eqnull
Browse files Browse the repository at this point in the history
Remove `eqnull` relaxing option.
  • Loading branch information
XhmikosR committed Mar 9, 2014
2 parents 3b43da1 + 6f0de82 commit 93f1e46
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/js/ratchet.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
popover = null;
}

if (popover == null) {
if (popover === null) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/js/ratchet.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/js/ratchet.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
popover = null;
}

if (popover == null) {
if (popover === null) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion docs/dist/js/ratchet.min.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion js/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"browser" : true,
"devel" : true,
"eqeqeq" : true,
"eqnull" : true,
"expr" : true,
"forin" : true,
"freeze" : true,
Expand Down
2 changes: 1 addition & 1 deletion js/popovers.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
popover = null;
}

if (popover == null) {
if (popover === null) {
return;
}

Expand Down

0 comments on commit 93f1e46

Please sign in to comment.