diff --git a/assets/scripts/app/templates/repos/show.hbs b/assets/scripts/app/templates/repos/show.hbs index f43d47ed..404576b5 100644 --- a/assets/scripts/app/templates/repos/show.hbs +++ b/assets/scripts/app/templates/repos/show.hbs @@ -10,7 +10,6 @@

{{description}}

- {{view Travis.RepoShowStatsView}} {{view Travis.RepoShowTabsView}} {{view Travis.RepoShowToolsView}} {{/with}} diff --git a/assets/scripts/app/templates/repos/show/stats.hbs b/assets/scripts/app/templates/repos/show/stats.hbs deleted file mode 100644 index dfbb633e..00000000 --- a/assets/scripts/app/templates/repos/show/stats.hbs +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/assets/scripts/app/views/repo/show.coffee b/assets/scripts/app/views/repo/show.coffee index 4bd1739a..a0099562 100644 --- a/assets/scripts/app/views/repo/show.coffee +++ b/assets/scripts/app/views/repo/show.coffee @@ -11,19 +11,6 @@ Travis.reopen @get('repos.isLoaded') && @get('repos.length') == 0 ).property('repos.isLoaded', 'repos.length') - RepoShowStatsView: Travis.View.extend - templateName: 'repos/show/stats' - repoBinding: 'parentView.repo' - statsBinding: 'repo.stats' - - urlGithubWatchers: (-> - Travis.Urls.githubWatchers(@get('repo.slug')) - ).property('repo.slug'), - - urlGithubNetwork: (-> - Travis.Urls.githubNetwork(@get('repo.slug')) - ).property('repo.slug'), - ReposEmptyView: Travis.View.extend template: ''