Get rid of the right hand sidebar
This commit is contained in:
parent
b703665fe5
commit
5fdc848123
|
@ -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`
|
|
@ -9,11 +9,6 @@
|
|||
{{render "flash"}}
|
||||
{{yield}}
|
||||
</div>
|
||||
{{#if config.pro}}
|
||||
<div id="right">
|
||||
{{render "sidebar"}}
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
<aside id="left">
|
||||
|
|
|
@ -8,26 +8,6 @@
|
|||
{{render "flash"}}
|
||||
{{yield}}
|
||||
</div>
|
||||
|
||||
<div id="right">
|
||||
<div id="slider" {{action "toggle" target=slider}}>
|
||||
<div class='icon'></div>
|
||||
</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">
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
<div id="slider" {{action toggle target=slider}}>
|
||||
<div class='icon'></div>
|
||||
</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}}
|
Loading…
Reference in New Issue
Block a user