You can clone with HTTPS or SSH.
window.MyApp = Models: {} Collections: {} Views: {} Routers: {} initialize: -> new MyApp.Routers.Items() Backbone.history.start() shouldLoadApp = -> $('#items').size() > 0 $(document).on 'page:before-change', -> if Backbone.History.started and Turbolinks?.supported locHref = window.location.href title = window.title window.history.replaceState {turbolinks: true, url: locHref}, title, locHref $(document).on 'page:change', -> MyApp.initialize() if shouldLoadApp()