Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ee91591

Browse files
author
tcme
committed
module example: reverts adding return instead use this.options as suggested by spikebrehm airbnb#36 (comment)
1 parent 070230f commit ee91591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@
11821182
var previousFancyInput = global.FancyInput;
11831183
11841184
function FancyInput(options) {
1185-
return options || (options = {});
1185+
this.options = options || {};
11861186
}
11871187
11881188
FancyInput.noConflict = function noConflict() {

0 commit comments

Comments
 (0)