brianleroux / xui

A tiny javascript framework for mobile web apps.
http://github.com/xui/xui
391 stars 159 forks source link

ReferenceError: Can't find variable: $. Line 1065 #26

Closed gcoop closed 13 years ago

gcoop commented 14 years ago

On orientation change for older browsers xUI throws this reference error.

ReferenceError: Can't find variable: $. Line 1065

Line 1065: $('body').fire('orientationchange'); // will this bubble up?

Needs to be: x$('body').fire('orientationchange'); // will this bubble up?

Thanks.

remy commented 14 years ago

Should be xui('body').fire... - it'll compress that way.

gcoop commented 14 years ago

my bad :)