diff --git a/app/controllers/sidebar.coffee b/app/controllers/sidebar.coffee deleted file mode 100644 index 47336d56..00000000 --- a/app/controllers/sidebar.coffee +++ /dev/null @@ -1,19 +0,0 @@ -`import Ember from 'ember'` - -Controller = Ember.ArrayController.extend - init: -> - @_super.apply this, arguments - @tickables = [] - - tips: [ - "Did you know that you can parallelize tests on Travis CI? Learn more" - "Did you know that you can split a build into several smaller pieces? Learn more" - "Did you know that you can skip a build? Learn more" - ] - - tip: (-> - if tips = @get('tips') - tips[Math.floor(Math.random()*tips.length)] - ).property().volatile() - -`export default Controller` diff --git a/app/templates/layouts/home.hbs b/app/templates/layouts/home.hbs index 2e601499..afb3b277 100644 --- a/app/templates/layouts/home.hbs +++ b/app/templates/layouts/home.hbs @@ -9,11 +9,6 @@ {{render "flash"}} {{yield}} - {{#if config.pro}} -