-
-
+
diff --git a/assets/scripts/spec/unit/tailing_spec.coffee b/assets/scripts/spec/unit/tailing_spec.coffee
deleted file mode 100644
index 18a836f0..00000000
--- a/assets/scripts/spec/unit/tailing_spec.coffee
+++ /dev/null
@@ -1,89 +0,0 @@
-fakeWindow =
- scroll: sinon.spy()
- scrollTop: sinon.stub().returns(0)
- height: sinon.stub().returns(40)
-element = jQuery('
')
-log = jQuery('
')
-tail = new Travis.Tailing(fakeWindow, '#specTail', '#specLog')
-tail.tail = -> element
-tail.log = -> log
-
-module "Travis.Tailing",
- setup: ->
- jQuery('body').append(element)
- jQuery('body').append(log)
-
- teardown: ->
- element.remove()
- log.remove()
- tail.stop()
-
-test "toggle", ->
- equal(element.hasClass('active'), false)
- tail.toggle()
- equal(element.hasClass('active'), true)
- tail.toggle()
- stop()
-
- Ember.run.later ->
- start()
- equal(element.hasClass('active'), false)
- , 300
-
-test "active", ->
- equal(tail.active(), false)
- element.addClass('active')
- equal(tail.active(), true)
-
-test "autoscroll when inactive", ->
- tail.scrollTo = sinon.spy()
-
- equal(tail.active(), false)
- equal(tail.autoScroll(), false)
- equal(tail.scrollTo.called, false)
-
-test "autoscroll", ->
- element.addClass('active')
- log.offset = -> {top: 1}
- log.outerHeight = -> 1
-
- equal(tail.active(), true)
- equal(tail.autoScroll(), true)
- equal(fakeWindow.scrollTop.calledWith(2), true)
-
-test "autoscroll when we're at the bottom", ->
- element.addClass('active')
- log.offset = -> {top: 0}
- log.outerHeight = -> 0
-
- equal(tail.active(), true)
- equal(tail.autoScroll(), false)
- equal(fakeWindow.scrollTop.calledWith(0), false)
-
-test 'should stop scrolling if the position changed', ->
- element.addClass('active')
- tail.position = 100
- tail.onScroll()
- equal(element.hasClass('active'), false)
-
-test 'positionButton adds the scrolling class', ->
- log.offset = -> {top: -1}
-
- tail.positionButton()
- equal(element.hasClass('scrolling'), true)
- equal(element.hasClass('bottom'), false)
-
-test 'positionButton removes the scrolling class', ->
- log.offset = -> {top: 1}
- tail.positionButton()
- equal(element.hasClass('scrolling'), false)
- equal(element.hasClass('bottom'), false)
-
-test 'positionButton sets the button as bottom', ->
- log.offset = -> {top: -100}
- log.height = -> 50
- tail.height = -> 1
-
- tail.positionButton()
- equal(element.hasClass('scrolling'), false)
- equal(element.hasClass('bottom'), true)
diff --git a/assets/styles/main/log.sass b/assets/styles/main/log.sass
index d5793a54..a6083550 100644
--- a/assets/styles/main/log.sass
+++ b/assets/styles/main/log.sass
@@ -88,66 +88,44 @@ pre#log
#log-container
position: relative
-#log-container
- #tail
- z-index: 99
- position: absolute
- display: block
- top: 0
- right: 2px
- margin: 13px 10px 0 0
- padding: 0 2px 0 3px
- color: #666
- text-shadow: 0px 1px 0px #fff
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
- font-size: $font-size-tiny
- line-height: 14px
- text-decoration: none
- white-space: nowrap
- border: 1px solid #bbb
- border-top-color: #ddd
- border-bottom-color: #bbb
- @include border-radius(8px)
- @include background(linear-gradient(#fff, #e0e0e0))
+#log-container #tail
+ z-index: 99
+ position: absolute
+ display: block
+ top: 0
+ right: 2px
+ margin: 13px 10px 0 0
+ padding: 0 2px 0 3px
+ color: #666
+ text-shadow: 0px 1px 0px #fff
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
+ font-size: $font-size-tiny
+ line-height: 14px
+ text-decoration: none
+ white-space: nowrap
+ border: 1px solid #bbb
+ border-top-color: #ddd
+ border-bottom-color: #bbb
+ @include border-radius(8px)
+ @include background(linear-gradient(#fff, #e0e0e0))
+ label
+ display: none
+ cursor: pointer
+
+ &:hover
+ padding: 1px 4px 1px 6px
label
- display: none
- cursor: pointer
+ display: inline
- &:hover
- padding: 1px 4px 1px 6px
- label
- display: inline
-
- &.scrolling
- position: fixed
- right: 32px
-
- &.bottom
- bottom: 45px
- top: inherit
-
- .status
- display: inline-block
- margin-right: 1px
- width: 8px
- height: 8px
- background-color: #aaa
- @include border-radius(4px)
- @include box-shadow(white 1px 1px 2px)
-
- &.active .status
- background-color: #6b0
-
- .to-top
- position: fixed
+ .status
display: inline-block
- bottom: 5px
- right: 35px
- width: 50px
- float: right
- margin-right: 2px
- padding-right: 16px
- text-align: right
- color: #999
- background: inline-image('ui/to-top.png') no-repeat right 6px
+ margin-right: 1px
+ width: 8px
+ height: 8px
+ background-color: #aaa
+ @include border-radius(4px)
+ @include box-shadow(white 1px 1px 2px)
+
+ &.active .status
+ background-color: #6b0
diff --git a/assets/styles/main/sponsors.sass b/assets/styles/main/sponsors.sass
index e5c79998..cfbbdc16 100644
--- a/assets/styles/main/sponsors.sass
+++ b/assets/styles/main/sponsors.sass
@@ -3,3 +3,12 @@
// float: left
margin-top: 0
color: #999
+ .to-top
+ display: inline-block
+ width: 50px
+ float: right
+ margin-right: 2px
+ padding-right: 16px
+ text-align: right
+ color: #999
+ background: inline-image('ui/to-top.png') no-repeat right 6px
From 8e5111da88963659c9a456f382d4672b86f78e85 Mon Sep 17 00:00:00 2001
From: Piotr Sarnacki
Date: Tue, 21 Jan 2014 17:57:35 +0100
Subject: [PATCH 4/4] Convert switches in profile to components
---
assets/scripts/app/components.coffee | 9 +++++
.../templates/components/travis-switch.hbs | 5 +++
.../app/templates/profile/tabs/hooks.hbs | 8 +----
assets/scripts/travis.coffee | 1 +
assets/styles/components/travis-switch.sass | 33 +++++++++++++++++
assets/styles/profile/hooks.sass | 35 -------------------
6 files changed, 49 insertions(+), 42 deletions(-)
create mode 100644 assets/scripts/app/components.coffee
create mode 100644 assets/scripts/app/templates/components/travis-switch.hbs
create mode 100644 assets/styles/components/travis-switch.sass
diff --git a/assets/scripts/app/components.coffee b/assets/scripts/app/components.coffee
new file mode 100644
index 00000000..da423edd
--- /dev/null
+++ b/assets/scripts/app/components.coffee
@@ -0,0 +1,9 @@
+Travis.TravisSwitchComponent = Ember.Component.extend
+ tagName: 'a'
+ classNames: ['travis-switch']
+ classNameBindings: ['active']
+
+ activeBinding: 'target.active'
+
+ click: ->
+ @sendAction('action', @get('target'))
diff --git a/assets/scripts/app/templates/components/travis-switch.hbs b/assets/scripts/app/templates/components/travis-switch.hbs
new file mode 100644
index 00000000..e7b20837
--- /dev/null
+++ b/assets/scripts/app/templates/components/travis-switch.hbs
@@ -0,0 +1,5 @@
+{{#if active}}
+ ON
+{{else}}
+ OFF
+{{/if}}
diff --git a/assets/scripts/app/templates/profile/tabs/hooks.hbs b/assets/scripts/app/templates/profile/tabs/hooks.hbs
index 8aec75ac..4f2b9cd0 100644
--- a/assets/scripts/app/templates/profile/tabs/hooks.hbs
+++ b/assets/scripts/app/templates/profile/tabs/hooks.hbs
@@ -24,13 +24,7 @@
{{else}}
diff --git a/assets/scripts/travis.coffee b/assets/scripts/travis.coffee
index 2491ca60..95770a69 100644
--- a/assets/scripts/travis.coffee
+++ b/assets/scripts/travis.coffee
@@ -167,6 +167,7 @@ require 'slider'
require 'tailing'
require 'templates'
require 'views'
+require 'components'
require 'config/locales'
diff --git a/assets/styles/components/travis-switch.sass b/assets/styles/components/travis-switch.sass
new file mode 100644
index 00000000..342aaac6
--- /dev/null
+++ b/assets/styles/components/travis-switch.sass
@@ -0,0 +1,33 @@
+.travis-switch
+ position: relative
+ display: block
+ width: 60px
+ height: 18px
+ margin: 0 10px 0 15px
+ padding: 0 10px 0 0
+ border: 1px solid #bdbdbd
+ line-height: 21px
+ font-size: 11px
+ color: #999
+ cursor: pointer
+ text-align: right
+ &:before
+ content: ""
+ position: absolute
+ top: -1px
+ left: -1px
+ width: 28px
+ height: 18px
+ background: #e9e9e7
+ border: 1px solid #bdbdbd
+
+.travis-switch.active
+ width: 56px
+ padding: 0 0 0 14px
+ background: #40454f
+ border: 1px solid #bdbdbd
+ color: #fff
+ text-align: left
+ &:before
+ left: auto
+ right: -1px
diff --git a/assets/styles/profile/hooks.sass b/assets/styles/profile/hooks.sass
index 5566b966..cc639438 100644
--- a/assets/styles/profile/hooks.sass
+++ b/assets/styles/profile/hooks.sass
@@ -66,41 +66,6 @@
padding-right: 0
background: inline-image('ui/github-admin.png') no-repeat 3px 4px
- .switch
- position: relative
- display: block
- width: 60px
- height: 18px
- margin: 0 10px 0 15px
- padding: 0 10px 0 0
- border: 1px solid #bdbdbd
- line-height: 21px
- font-size: 11px
- color: #999
- cursor: pointer
- text-align: right
- &:before
- content: ""
- position: absolute
- top: -1px
- left: -1px
- width: 28px
- height: 18px
- background: #e9e9e7
- border: 1px solid #bdbdbd
-
- &.active .switch
- width: 56px
- padding: 0 0 0 14px
- background: #40454f
- border: 1px solid #bdbdbd
- color: #fff
- text-align: left
- &:before
- left: auto
- right: -1px
-
-
&:hover
> a
color: $color-link-highlight