Get rid of the right hand sidebar

This commit is contained in:
Piotr Sarnacki 2015-03-19 12:14:31 +01:00
parent b703665fe5
commit 5fdc848123
4 changed files with 0 additions and 59 deletions

View File

@ -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? <a href=\"http://docs.travis-ci.com/user/speeding-up-the-build/#Paralellizing-your-build-on-one-VM?utm_source=tips\">Learn more</a>"
"Did you know that you can split a build into several smaller pieces? <a href=\"http://docs.travis-ci.com/user/speeding-up-the-build/#Parallelizing-your-builds-across-virtual-machines?utm_source=tips\">Learn more</a>"
"Did you know that you can skip a build? <a href=\"http://docs.travis-ci.com/user/how-to-skip-a-build/?utm_source=tips\">Learn more</a>"
]
tip: (->
if tips = @get('tips')
tips[Math.floor(Math.random()*tips.length)]
).property().volatile()
`export default Controller`

View File

@ -9,11 +9,6 @@
{{render "flash"}}
{{yield}}
</div>
{{#if config.pro}}
<div id="right">
{{render "sidebar"}}
</div>
{{/if}}
</div>
<aside id="left">

View File

@ -8,26 +8,6 @@
{{render "flash"}}
{{yield}}
</div>
<div id="right">
<div id="slider" {{action "toggle" target=slider}}>
<div class='icon'></div>&nbsp;
</div>
<div class="box">
<h4>Getting started?</h4>
<p>
Please read our <a href="http://docs.travis-ci.com/user/getting-started">guide</a>.
You'll be up and running in no time!
</p>
<p>
You can find detailed docs on our <a href="http://docs.travis-ci.com">documentation</a> site.
</p>
<p>
If you need help <a href="http://stackoverflow.com/questions/ask?tags=travis-ci">ask a question</a> or hop on <a href="irc://irc.freenode.net/#travis">#travis</a> on irc.freenode.net
</p>
</div>
</div>
</div>
<aside id="left">

View File

@ -1,15 +0,0 @@
<div id="slider" {{action toggle target=slider}}>
<div class='icon'></div>&nbsp;
</div>
{{#if tip}}
<div class="tip box">
<h4>Tip:</h4>
<p>{{{tip}}}</p>
</div>
{{/if}}
{{#if config.sidebar_support_box}}
{{view templateName="layouts/support"}}
{{/if}}