diff --git a/assets/scripts/app/templates/build.hbs b/assets/scripts/app/templates/build.hbs index 52b3b269..cd4e23d7 100644 --- a/assets/scripts/app/templates/build.hbs +++ b/assets/scripts/app/templates/build.hbs @@ -10,7 +10,7 @@
{{repo.owner.login}}
{{#link-to "repo" repo.owner.login repo.name}}{{repo.name}}{{/link-to}}
-{{#link-to "build" repo.owner.login repo.name repo.last_build.id}} diff --git a/assets/scripts/app/templates/job.hbs b/assets/scripts/app/templates/job.hbs index 5fd34a27..7c7ef0d8 100644 --- a/assets/scripts/app/templates/job.hbs +++ b/assets/scripts/app/templates/job.hbs @@ -11,7 +11,7 @@
Duration: - {{formatDuration repo.lastBuildDuration}} + {{format-duration repo.lastBuildDuration}}
diff --git a/assets/scripts/app/utils/pusher.coffee b/assets/scripts/app/utils/pusher.coffee index 55866404..c124bcae 100644 --- a/assets/scripts/app/utils/pusher.coffee +++ b/assets/scripts/app/utils/pusher.coffee @@ -38,8 +38,8 @@ TravisPusher.prototype.unsubscribe = (channel) -> @pusher.unsubscribe(channel) if @pusher?.channel(channel) TravisPusher.prototype.prefix = (channel) -> - if channel.indexOf(@config.pusher.channel_prefix) != 0 - "#{@config.pusher.channel_prefix}#{channel}" + if channel.indexOf(config.pusher.channel_prefix) != 0 + "#{config.pusher.channel_prefix}#{channel}" else channel