From 2d34fc0252e4a596aed2cd922f48608ac26edbfa Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 27 Jul 2015 18:45:18 +0200 Subject: [PATCH 01/12] group no-build-svg elements and alter message on PR tab --- app/controllers/builds.coffee | 8 ++ app/templates/builds.hbs | 2 +- app/templates/components/no-builds.hbs | 120 +++++++++++++------------ 3 files changed, 74 insertions(+), 56 deletions(-) diff --git a/app/controllers/builds.coffee b/app/controllers/builds.coffee index 7bd25ad8..5a179af5 100644 --- a/app/controllers/builds.coffee +++ b/app/controllers/builds.coffee @@ -21,6 +21,14 @@ Controller = Ember.ArrayController.extend @get('tab') != 'branches' and parseInt(@get('lastObject.number')) > 1 ).property('tab', 'lastObject.number') + displayPullRequests: (-> + if @get('tab') == 'pull_requests' + return true + else + return false + + ).property('tab', 'lastObject.number') + olderThanNumber: (id, number, type) -> options = { repository_id: id, after_number: number } if type? diff --git a/app/templates/builds.hbs b/app/templates/builds.hbs index e9cd7322..932d2453 100644 --- a/app/templates/builds.hbs +++ b/app/templates/builds.hbs @@ -3,7 +3,7 @@ {{#each controller as |build|}} {{builds-item build=build}} {{else}} - {{no-builds}} + {{no-builds isPR=displayPullRequests}} {{/each}} {{#if displayShowMoreButton}}

diff --git a/app/templates/components/no-builds.hbs b/app/templates/components/no-builds.hbs index 35c85ad0..6f41699e 100644 --- a/app/templates/components/no-builds.hbs +++ b/app/templates/components/no-builds.hbs @@ -2,62 +2,72 @@

- - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
-

No builds for this repository

-

Want to start testing this project on Travis CI?

- Read the Docs on Getting Started + {{#unless isPR}} +

No builds for this repository

+

Want to start testing this project on Travis CI?

+ Read the Docs on Getting Started + {{else}} +

No Pull Request builds for this Repositiory

+ {{/unless}} + From 163ad2a6dd61c22fd51439f6cd653cb5268bbe03 Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Tue, 28 Jul 2015 15:20:50 +0200 Subject: [PATCH 02/12] add not-active component --- app/components/not-active.coffee | 5 ++ app/templates/components/not-active.hbs | 79 +++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 app/components/not-active.coffee create mode 100644 app/templates/components/not-active.hbs diff --git a/app/components/not-active.coffee b/app/components/not-active.coffee new file mode 100644 index 00000000..f535d7f6 --- /dev/null +++ b/app/components/not-active.coffee @@ -0,0 +1,5 @@ +`import Ember from 'ember'` + +NotActiveComponent = Ember.Component.extend() + +`export default NotActiveComponent` diff --git a/app/templates/components/not-active.hbs b/app/templates/components/not-active.hbs new file mode 100644 index 00000000..49e2de8c --- /dev/null +++ b/app/templates/components/not-active.hbs @@ -0,0 +1,79 @@ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +

This is not an active repository

+

Want to start testing this project on Travis CI?

+ Read the Docs on Getting Started + +
From 8bc1d4ad3383e1f85704cb0827838bbc6ea87576 Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Tue, 28 Jul 2015 15:57:40 +0200 Subject: [PATCH 03/12] display wheelbarrow notice if repo is not active --- app/templates/repo.hbs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/templates/repo.hbs b/app/templates/repo.hbs index 59131043..f81053d6 100644 --- a/app/templates/repo.hbs +++ b/app/templates/repo.hbs @@ -23,7 +23,11 @@ {{view 'repo-show-tabs'}}
- {{outlet}} + {{#if repo.active}} + {{outlet}} + {{else}} + {{not-active}} + {{/if}}
From 0059a34daa44d2106daf868e8ac02af292e733ec Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Tue, 28 Jul 2015 15:59:56 +0200 Subject: [PATCH 04/12] inline loading indicator on profile hooks --- app/templates/components/hooks-list-item.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/components/hooks-list-item.hbs b/app/templates/components/hooks-list-item.hbs index cc6eb0d6..1e2df72e 100644 --- a/app/templates/components/hooks-list-item.hbs +++ b/app/templates/components/hooks-list-item.hbs @@ -1,7 +1,7 @@
{{hook-switch hook=hook onToggleError="handleToggleError" onToggle="resetErrors"}} {{#if hook.isSaving}} - {{loading-indicator}} + {{loading-indicator inline=true}} {{else}} {{#link-to "settings" hook.ownerName hook.name class="profile-settings" title="Repository settings"}}{{/link-to}} {{/if}} From 72b214e5b8223bda2fe25eef7a9e3fa7d5936ccd Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Tue, 28 Jul 2015 17:11:20 +0200 Subject: [PATCH 05/12] group elements in wheelbarrow svg --- app/templates/components/not-active.hbs | 116 +++++++++++------------- 1 file changed, 52 insertions(+), 64 deletions(-) diff --git a/app/templates/components/not-active.hbs b/app/templates/components/not-active.hbs index 49e2de8c..58d44bf2 100644 --- a/app/templates/components/not-active.hbs +++ b/app/templates/components/not-active.hbs @@ -2,72 +2,60 @@
- + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
From d15d35a9ff9e97f627e343b47ba6f15cee2a0b9a Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Wed, 29 Jul 2015 12:13:31 +0200 Subject: [PATCH 06/12] change logic of displaying noPR builds message --- app/controllers/builds.coffee | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/controllers/builds.coffee b/app/controllers/builds.coffee index 5a179af5..206d7b72 100644 --- a/app/controllers/builds.coffee +++ b/app/controllers/builds.coffee @@ -22,7 +22,9 @@ Controller = Ember.ArrayController.extend ).property('tab', 'lastObject.number') displayPullRequests: (-> - if @get('tab') == 'pull_requests' + if Ember.isEmpty(@get('repo.builds.content')) + return false # if there is no build there is no PR + else if Ember.isEmpty(@get('repo.pullRequests.content')) return true else return false From 5b361a49ef1787fb76c5338fce9e83e1692eaf1e Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Wed, 29 Jul 2015 16:07:31 +0200 Subject: [PATCH 07/12] initial attempt to trigger the first build of a repo through api --- app/components/no-builds.coffee | 18 +++++++++++++++++- app/controllers/builds.coffee | 20 ++++++++++++++------ app/templates/builds.hbs | 2 +- app/templates/components/no-builds.hbs | 6 +++++- 4 files changed, 37 insertions(+), 9 deletions(-) diff --git a/app/components/no-builds.coffee b/app/components/no-builds.coffee index 38e3b529..57050edf 100644 --- a/app/components/no-builds.coffee +++ b/app/components/no-builds.coffee @@ -1,5 +1,21 @@ `import Ember from 'ember'` +`import Ajax from 'travis/utils/ajax'` +`import config from 'travis/config/environment'` -NoBuildsComponent = Ember.Component.extend() +NoBuildsComponent = Ember.Component.extend + + actions: + triggerBuild: () -> + @set('isLoading', true) + apiEndpoint = config.apiEndpoint + $.ajax(apiEndpoint + "/v3/repo/#{@get('repo.repo.id')}/requests", { + headers: { + Authorization: 'token ' + @get('repo.auth') + }, + type: "POST" + }).then( => + @set('isLoading', false) + # @transitionToRoute('repo') + ); `export default NoBuildsComponent` diff --git a/app/controllers/builds.coffee b/app/controllers/builds.coffee index 206d7b72..d0f28631 100644 --- a/app/controllers/builds.coffee +++ b/app/controllers/builds.coffee @@ -22,14 +22,21 @@ Controller = Ember.ArrayController.extend ).property('tab', 'lastObject.number') displayPullRequests: (-> - if Ember.isEmpty(@get('repo.builds.content')) - return false # if there is no build there is no PR - else if Ember.isEmpty(@get('repo.pullRequests.content')) - return true + if @get('tab') == 'pull_requests' + if Ember.isEmpty(@get('repo.pullRequests.content')) + true + else + false else - return false + false + ).property('tab', 'repo.builds', 'repo.pullRequests') - ).property('tab', 'lastObject.number') + things: (-> + return { + repo: @get('repo'), + auth: @auth.token() + } + ).property('repo') olderThanNumber: (id, number, type) -> options = { repository_id: id, after_number: number } @@ -38,4 +45,5 @@ Controller = Ember.ArrayController.extend @store.find('build', options) + `export default Controller` diff --git a/app/templates/builds.hbs b/app/templates/builds.hbs index 932d2453..defdc32e 100644 --- a/app/templates/builds.hbs +++ b/app/templates/builds.hbs @@ -3,7 +3,7 @@ {{#each controller as |build|}} {{builds-item build=build}} {{else}} - {{no-builds isPR=displayPullRequests}} + {{no-builds repo=things isPR=displayPullRequests}} {{/each}} {{#if displayShowMoreButton}}

diff --git a/app/templates/components/no-builds.hbs b/app/templates/components/no-builds.hbs index 6f41699e..78e42fbd 100644 --- a/app/templates/components/no-builds.hbs +++ b/app/templates/components/no-builds.hbs @@ -65,7 +65,11 @@ {{#unless isPR}}

No builds for this repository

Want to start testing this project on Travis CI?

- Read the Docs on Getting Started + {{#if isLoading}} + {{loading-indicator}} + {{else}} + Trigger the first build + {{/if}} {{else}}

No Pull Request builds for this Repositiory

{{/unless}} From f41babc783e3daaa44f5e412a571a5c6a2bf0f4a Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Thu, 30 Jul 2015 17:34:18 +0200 Subject: [PATCH 08/12] remove more legacy styles --- app/styles/app.scss | 4 - app/styles/app/components/travis-switch.sass | 62 ---- app/styles/app/main/sponsors.sass | 5 - app/styles/app/pro.sass | 169 ---------- app/styles/app/settings.sass | 306 ------------------- 5 files changed, 546 deletions(-) delete mode 100644 app/styles/app/components/travis-switch.sass delete mode 100644 app/styles/app/main/sponsors.sass delete mode 100644 app/styles/app/pro.sass delete mode 100644 app/styles/app/settings.sass diff --git a/app/styles/app.scss b/app/styles/app.scss index 21280bee..108cc3d8 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -16,13 +16,9 @@ @import "app/main/list"; @import "app/main/log"; -// @import "app/main/sponsors"; @import "app/misc"; @import "app/popup"; -// @import "app/pro"; -// @import "app/settings"; -// @import "app/components/travis-switch"; @import "app/components/sync-button"; @import "app/components/loading-indicator"; diff --git a/app/styles/app/components/travis-switch.sass b/app/styles/app/components/travis-switch.sass deleted file mode 100644 index c78f814f..00000000 --- a/app/styles/app/components/travis-switch.sass +++ /dev/null @@ -1,62 +0,0 @@ -.settings-row - margin-top: 20px - -.settings-row, -.short-settings-element - & > * - box-sizing: content-box - -a.travis-switch - margin: 0 10px 0 0 - -p.settings-row - line-height: 30px - -.travis-switch - box-sizing: content-box - position: relative - display: inline-block - float: left - width: 5em - height: 1.45em - margin: 20px 0 50px 0 - padding: 0.42em 1.5em - background-color: #F5F5F5 - border: 1px solid #E3E1E1 - border-radius: 4px - line-height: 1.58em - font-size: 12px - color: #999999 - cursor: pointer - text-align: right - &:before - content: "" - position: absolute - top: 2px - left: 2px - width: 3.5em - height: 1.9em - background: #e9e9e7 - border: 1px solid #d7d4d4 - border-radius: 2px - -.travis-switch.active - background-color: #607A83 - border-radius: 4px - color: #ffffff - font-weight: 600 - text-align: left - &:before - left: auto - right: 2px - border: 1px solid #9cafb5 - -span.on - background-color: #607A83 - color: #fff - font-weight: 800 - border-radius: 3px - float: left - -span.off - float: right diff --git a/app/styles/app/main/sponsors.sass b/app/styles/app/main/sponsors.sass deleted file mode 100644 index e5c79998..00000000 --- a/app/styles/app/main/sponsors.sass +++ /dev/null @@ -1,5 +0,0 @@ -#main - .sponsor - // float: left - margin-top: 0 - color: #999 diff --git a/app/styles/app/pro.sass b/app/styles/app/pro.sass deleted file mode 100644 index 6314675f..00000000 --- a/app/styles/app/pro.sass +++ /dev/null @@ -1,169 +0,0 @@ - -.pro - #log-container - padding-bottom: 1.2em - - .tip - a - text-decoration: underline - p - margin-top: 12px - margin-bottom: 0px - - #top - li.stats - display: none - - // .profile - // margin-right: 5px - - .legal - min-width: 110px - ul - margin-left: -20px - a - padding: 5px 35px - - #github - display: none - - &#home #main - padding-right: 30px - - #repository .github-stats - display: none - - #empty - font-size: $font-size-big - - h2 - margin-bottom: 37px - - ul - list-style-type: disc - padding-left: 18px - - a - text-decoration: underline - - .sponsor - display: none - - &#profile #main - .tabs .right - float: right - .tabs #tab_billing - margin-right: 0 - - .activate, - .activated - position: absolute - display: block - right: 0 - margin: -54px 30px 0 0 - padding-right: 25px - - &:before - content: "" - position: absolute - top: 5px - right: 7px - width: 12px - height: 12px - - .activate:before - background: inline-image('ui/activate.png') no-repeat 0 0 - background-position: 0px 5px - height: 100% - - .activate:hover:before, - .activate:focus:before, - .activate:active:before - background-position: -12px 5px - - .activated - background: #44a057 - border: 0 - color: white - - .activated:before - background: url(/images/ui/activated.png) no-repeat 0 0 - - #running-jobs - .jobs - margin: 5px 0 5px - .job - list-style-type: disc - list-style-position: inside - .slug - max-width: 150px - overflow: hidden - white-space: nowrap - text-overflow: ellipsis - display: inline-block - display: -moz-inline-stack - .group a - cursor: pointer - - #right - padding-top: 13px - padding-right: 20px - padding-left: 20px - color: $color-link - h4 - margin: 24px 0 0 - ul - @include resetul - margin-top: 10px - li - word-wrap: break-word - - .box - margin-top: 25px - margin-left: -3px - padding: 15px - border: 1px solid #e0e0e0 - background-color: $color-bg-sidebar-box - - h4 - margin: 0 - a - text-decoration: underline - li - list-style-type: square - margin-left: 15px - - #queues - ul - margin: 5px 0 5px - - - #slider - position: absolute - height: 99% - top: 12px - left: 0 - width: 10px - background-color: $color-bg-slider - cursor: pointer - background: transparent url(/images/ui/slider-closed.png) no-repeat 3px 38px - border-top-left-radius: 4px - - &:hover - background-color: $color-border-slider-hover - - #right .show-more-jobs - text-decoration: underline - cursor: pointer - - #right - background-color: $right-bg - border-left: 1px solid $color-border-normal - - #settings li.env-var span.name - width: 210px - - #settings li.env-var span.value - max-width: 265px - #settings - min-width: 675px diff --git a/app/styles/app/settings.sass b/app/styles/app/settings.sass deleted file mode 100644 index bea3d151..00000000 --- a/app/styles/app/settings.sass +++ /dev/null @@ -1,306 +0,0 @@ -#settings - ul - @include resetul - - .settings-form - margin: 30px 0 30px 0 - - p.short-settings-element - display: inline-block - vertical-align: middle - margin: 0 10px 0 0 - float: left - - label - line-height: 30px - - input - display: inline-block - float: left - width: 60px - height: 18px - padding: 5px 18px 5px 18px - background-color: #F5F5F5 - border: 1px solid #E3E1E1 - border-radius: 4px - line-height: 19px - font-size: 11px - color: #999999 - text-align: center - - .field.invalid - input, textarea - border-width: 1px - border-color: #ffb6c1 - background: rgb(252, 227, 230) - - form.env-var, form.ssh-key - margin-top: 20px - - .field - padding-bottom: 10px - clear: left - @media screen and (min-width: 47em) - clear: none - .field:after - visibility: hidden - display: block - font-size: 0 - content: " " - clear: both - height: 0 - - .travis-switch - display: block - - label - display: inline-block - - form.env-var - label - width: 40px - label.value - width: auto - line-height: 1.9em - .travis-switch.value - font-size: 10px - form.ssh-key - span.error - display: block - margin-left: 76px - label - width: 73px - label.value - float: left - textarea - margin-left: 3px - width: 580px - height: 250px - display: inline-block - padding: 0 5px 0 5px - background-color: #fff - border: 1px solid #ddd - line-height: 17px - font-size: 13px - color: #999999 - text-align: left - - span.error - display: inline-block - margin-left: 10px - color: #a80000 - - .env-var input[type=submit].saving, .ssh-key input[type=submit].saving, - .env-var .delete-var.deleting, .delete-ssh-key.deleting - background-color: #bbb - background-image: inline-image('ui/round-spinner.svg') - background-repeat: no-repeat - background-position: center - background-size: 20px - text-indent: -9999px - - .env-var-name - span - font-size: 18px - font-weight: 600 - color: #5e6872 - - span.value.value-display - font-size: 14px - background-color: #efefdf - border-radius: 4px - padding: 0 10px 0 10px - color: #838b8c - font-family: monospace - - span.value.value-display.secure - background-image: inline-image('ui/secure.png') - background-position: 8px center - background-repeat: no-repeat - background-size: 0.5em - padding-left: 26px - - .add-env-var, .add-ssh-key - color: $white - background-color: #97a3aa - border-radius: 4px - padding: 8px 12px 8px 12px - margin-bottom: 20px - font-size: 13px - line-height: 55px - cursor: pointer - - .add-env-var:hover, .add-ssh-key:hover - background-color: #7c878d - - input - display: inline-block - width: 260px - height: 20px - padding: 0 5px 0 5px - background-color: #fff - border: 1px solid #ddd - line-height: 17px - font-size: 13px - color: #999999 - text-align: left - - form.env-var .actions - margin-bottom: 35px - - input.submit-env-var, input.submit-ssh-key - color: #ffffff - background-color: #7ea35a - border-radius: 4px - font-size: 13px - width: 60px - height: 32px - text-align: center - margin: 10px 6px 0 0 - cursor: pointer - - .submit-env-var:hover, .submit-ssh-key:hover - background-color: #6f924f - - .cancel-env-var, .cancel-ssh-key - margin-left: 3px - - .cancel-env-var:hover, .cancel-ssh-key:hover - text-decoration: underline - - input[type="checkbox"] - display: inline-block - vertical-align: middle - - .edit-var - display: inline-block - margin: 6px 10px 7px 0 - color: #ffffff - background-color: #bcbcbb - border-radius: 4px - padding: 4px 15px 4px 15px - font-size: 13px - cursor: pointer - - .edit-var:hover - background-color: #a4a5a4 - - .delete-var, .delete-ssh-key - display: inline-block - margin: 6px 0 7px 0 - color: #ffffff - background-color: #932828 - border-radius: 4px - padding: 4px 15px 4px 15px - font-size: 13px - cursor: pointer - - .delete-var:hover, .delete-ssh-key:hover - background-color: #820b0b - - form.env-var - width: 100% - margin-top: 20px - margin-bottom: 30px - border-bottom: 1px solid #f1f1f1 - - span.error - margin-left: 0 - display: none - - &.show - display: inline-block - - label.name, label.value - display: none - - label.public - width: 80% - - .field.name, .field.value - float: left - padding-bottom: 0 - min-height: 33px - line-height: 2 - - span.equals - float: left - display: block - line-height: 2 - margin: 0 10px 0 14px - - .field.name - margin-bottom: 10px - input - width: 97% - .field.value - width: 45% - input - width: 97% - .actions - margin-bottom: 10px - clear: both - - ul.env-vars - display: block - li.env-var - margin: 10px 40px 0 0 - padding-bottom: 10px - overflow: auto - border-bottom: 1px solid #F1F1F1 - width: 100% - - form.env-var - margin-bottom: 6px - border-bottom: none - - .var - font-size: 13px - display: inline-block - margin-right: 10px - - .row - .label - display: inline-block - border: 1px solid #ddd - font-size: 13px - margin-top: 4px - height: 20px - - .name, - .value - line-height: 20px - position: relative - font-size: 15px - - .equals - margin: 0 10px 0 14px - - .name - width: 250px - text-align: left - - .value - display: block - width: auto - text-align: left - max-width: 390px - min-height: 25px - padding: 7px 12px 3px - - @media #{$medium-up} - .value, - .name - display: inline-block - vertical-align: middle - - .field--switch - display: inline-block - vertical-align: middle - label.public - width: auto - line-height: 1.8 - - .value--extra - padding: 0 !important - width: 250px !important From 86aea340eb14818da027a4f66bf4b7c4398d012b Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 3 Aug 2015 11:28:30 +0200 Subject: [PATCH 09/12] try some animations --- app/styles/app.scss | 1 + app/styles/app/animation/wheelbarrow.sass | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 app/styles/app/animation/wheelbarrow.sass diff --git a/app/styles/app.scss b/app/styles/app.scss index 108cc3d8..0b9c0e30 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -38,6 +38,7 @@ @import "app/modules/forms"; @import "app/modules/notice"; +@import "app/animation/wheelbarrow"; @import "app/layout"; @import "app/layouts/dashboard"; diff --git a/app/styles/app/animation/wheelbarrow.sass b/app/styles/app/animation/wheelbarrow.sass new file mode 100644 index 00000000..6681466d --- /dev/null +++ b/app/styles/app/animation/wheelbarrow.sass @@ -0,0 +1,18 @@ +#wheelbarrow + + +#small-box + display: none + +#big-box + transform-origin: center center + animation: + + + +@keyframes bigBox + 0% + transform: translate(11%, -25%)rotateZ(5deg) + + 100% + transform: translate(0, 0)rotateZ(0) \ No newline at end of file From 9efa886d01aedb8e6babfe9714c0020aa85f6c93 Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 3 Aug 2015 18:01:40 +0200 Subject: [PATCH 10/12] remove animation for now --- app/styles/app.scss | 2 -- app/styles/app/animation/wheelbarrow.sass | 18 ------------------ 2 files changed, 20 deletions(-) delete mode 100644 app/styles/app/animation/wheelbarrow.sass diff --git a/app/styles/app.scss b/app/styles/app.scss index 0b9c0e30..193e8ddb 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -38,8 +38,6 @@ @import "app/modules/forms"; @import "app/modules/notice"; -@import "app/animation/wheelbarrow"; - @import "app/layout"; @import "app/layouts/dashboard"; @import "app/layouts/error"; diff --git a/app/styles/app/animation/wheelbarrow.sass b/app/styles/app/animation/wheelbarrow.sass deleted file mode 100644 index 6681466d..00000000 --- a/app/styles/app/animation/wheelbarrow.sass +++ /dev/null @@ -1,18 +0,0 @@ -#wheelbarrow - - -#small-box - display: none - -#big-box - transform-origin: center center - animation: - - - -@keyframes bigBox - 0% - transform: translate(11%, -25%)rotateZ(5deg) - - 100% - transform: translate(0, 0)rotateZ(0) \ No newline at end of file From a2e78bb0580ab67ae6e71d3a75c04581905fab37 Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Mon, 10 Aug 2015 19:11:32 +0200 Subject: [PATCH 11/12] take out trigger build via api because it doesn't work --- app/templates/components/no-builds.hbs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/templates/components/no-builds.hbs b/app/templates/components/no-builds.hbs index 78e42fbd..ab00459c 100644 --- a/app/templates/components/no-builds.hbs +++ b/app/templates/components/no-builds.hbs @@ -65,11 +65,12 @@ {{#unless isPR}}

No builds for this repository

Want to start testing this project on Travis CI?

- {{#if isLoading}} + Read the Docs on Getting Started + {{!-- {{#if isLoading}} {{loading-indicator}} {{else}} Trigger the first build - {{/if}} + {{/if}} --}} {{else}}

No Pull Request builds for this Repositiory

{{/unless}} From 97463e6320d745e43be5853d0163cd33345150d8 Mon Sep 17 00:00:00 2001 From: Lisa Passing Date: Tue, 11 Aug 2015 13:52:34 +0200 Subject: [PATCH 12/12] write repository consistently in lower case --- app/templates/components/no-builds.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/components/no-builds.hbs b/app/templates/components/no-builds.hbs index ab00459c..2d5f5168 100644 --- a/app/templates/components/no-builds.hbs +++ b/app/templates/components/no-builds.hbs @@ -72,7 +72,7 @@ Trigger the first build {{/if}} --}} {{else}} -

No Pull Request builds for this Repositiory

+

No Pull Request builds for this repositiory

{{/unless}}