You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
App.js is mainly about configuration. The shim configuration specifies jQuery as a dependency for jQuery.alpha and jQUery.beta. Finally, our main code is loaded at the bottom of the file:
//the jquery.alpha.js and jquery.beta.js plugins have been loaded.
55
+
$(function() {
56
+
$('body').alpha().beta();
57
+
});
58
+
});
59
+
```
60
+
26
61
###How to see it in action
27
62
28
63
Just serve up the www/ folder using any web server you'd like. If you have python installed, an easy way is to navigate into the www/ directory and type `python -m SimpleHTTPServer`
0 commit comments