travis-web/assets/scripts/app
Piotr Sarnacki d94816ec8f Remove unneeded code
This piece of code was used in order to load repos associated to jobs
when the latter were loaded from pusher. This was needed because jobs
events do not have repository record passed in pusher payload, so when
job was added with pusher and link to the job was displayed in "Running
Jobs" or in workers on right sidebar, Ember was loading missing repos.
We don't need this code anymore as there is no right sidebar.

Additionally after changes in Ember.js, it's possible to pass primitives
to linkTo. Previously the link to record needed to be constructed as
following:

    {{#linkTo "job" job.repo job}}Link to repo{{/linkTo}}

The drawback of such code is that repo would have been instantiated in
such case. Now, we can do something like this:

    {{#linkTo "job" job.repositorySlug job}}Link to repo{{/linkTo}}

so as long as we have information about repository slug in the job data,
such hacks are not be needed.
2013-08-05 13:14:58 +02:00
..
controllers Add first_sync template 2013-08-05 03:29:19 +02:00
helpers Use Handlebars.helper instead of registerBoundHelper 2013-07-31 13:49:46 +02:00
models Remove unneeded code 2013-08-05 13:14:58 +02:00
store Add RGSoC logo to the top of the sidebar. 2013-05-31 21:17:06 +02:00
templates Add first_sync template 2013-08-05 03:29:19 +02:00
views Refactor sign in related templates, fix indicator in auth template 2013-08-05 03:24:33 +02:00
app.coffee Refactor sign in related templates, fix indicator in auth template 2013-08-05 03:24:33 +02:00
auth.coffee Improve auth code in router by using new async stuff (❤️ @machty) 2013-08-03 20:48:59 +02:00
controllers.coffee Add first_sync template 2013-08-05 03:29:19 +02:00
helpers.coffee Fixed I18n handlebars helpers to update when locale changes 2012-12-11 08:54:43 +09:00
models.coffee Add RGSoC logo to the top of the sidebar. 2013-05-31 21:17:06 +02:00
pusher.coffee Add pusher receive related stuff to App (previously it was in store) 2013-07-31 13:47:55 +02:00
routes.coffee Add first_sync template 2013-08-05 03:29:19 +02:00
slider.coffee Make the app work with disabled cookies 2012-12-10 17:37:09 +01:00
tailing.coffee Event is no longer passed as an argument to handlers 2013-02-21 23:22:52 +01:00
views.coffee Allow to see getting started page through the URL 2013-06-13 12:40:46 +02:00