If you are using "hash" navigation for a single page app on Github Org or User Pages, you may run into a URL problem.
Users who visit a url like
http://myorg.github.io/upcoming-events
| # app deps | |
| sudo yum install git | |
| # erlang deps | |
| sudo yum groupinstall "Development Tools" | |
| sudo yum install ncurses-devel openssl-devel | |
| # erlang | |
| wget http://www.erlang.org/download/otp_src_19.2.tar.gz | |
| tar -zxvf otp_src_19.2.tar.gz |
| (function (global) { | |
| "use strict"; | |
| function empty(obj) { | |
| var key; | |
| for (key in obj) if (obj.hasOwnProperty(key)) return false; | |
| return true; | |
| } | |
| var Ember = global.Ember, |
| { | |
| // -------------------------------------------------------------------- | |
| // JSHint Configuration, Strict Edition | |
| // -------------------------------------------------------------------- | |
| // | |
| // This is a options template for [JSHint][1], using [JSHint example][2] | |
| // and [Ory Band's example][3] as basis and setting config values to | |
| // be most strict: | |
| // | |
| // * set all enforcing options to true |