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 138138
139139 /* Private */
140140 Context . prototype . innerHeight = function ( ) {
141- if ( this . element === this . element . window ) {
141+ if ( this . element == this . element . window ) {
142142 return Waypoint . viewportHeight ( )
143143 }
144144 return this . adapter . innerHeight ( )
152152
153153 /* Private */
154154 Context . prototype . innerWidth = function ( ) {
155- if ( this . element === this . element . window ) {
155+ if ( this . element == this . element . window ) {
156156 return Waypoint . viewportWidth ( )
157157 }
158158 return this . adapter . innerWidth ( )
175175 /* Public */
176176 /* http://imakewebthings.com/waypoints/api/context-refresh */
177177 Context . prototype . refresh = function ( ) {
178- var isWindow = this . element === this . element . window
178+ var isWindow = this . element == this . element . window
179179 var contextOffset = this . adapter . offset ( )
180180 var triggeredGroups = { }
181181 var axes
You can’t perform that action at this time.
0 commit comments