Skip to content

Commit

Permalink
Merge pull request #35 from junalmeida/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
junalmeida authored Aug 30, 2017
2 parents 4ac6cfd + 5a14057 commit 29acdc1
Show file tree
Hide file tree
Showing 32 changed files with 11,350 additions and 11,273 deletions.
6,754 changes: 3,371 additions & 3,383 deletions docs/dist/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/dist/app.js.map

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions docs/dist/app/core/global-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ <h2>Configure Dash-CI</h2>
<label>Pages:</label>
<input ng-model="ctrl.pageCount" placeholder="0" type="number" required />
</md-input-container>
<md-input-container flex="20">
<label>Cycle Every:</label>
<md-select ng-model="ctrl.vm.cycle">
<md-option ng-value="undefined">Never</md-option>
<md-option ng-value="opt.value" ng-repeat="opt in ctrl.intervals">{{ opt.desc }}</md-option>
</md-select>
</md-input-container>
<md-input-container flex="20">
<label>Grid Rows:</label>
<input ng-model="ctrl.vm.rows" placeholder="0" type="number" required />
Expand All @@ -31,6 +38,16 @@ <h2>Configure Dash-CI</h2>
</md-input-container>
</div>
</div>
<div layout="row" layout-align="start" flex>
<md-list flex>
<md-subheader class="md-no-sticky">Page Titles</md-subheader>
<md-list-item class="md-2-line" ng-repeat="i in ctrl.vm.pages">
<md-input-container flex class="md-list-item-text">
<h3><input ng-model="i.name" type="text" required /></h3>
</md-input-container>
</md-list-item>
</md-list>
</div>
</md-content>
</md-tab>
<md-tab label="Gitlab">
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/app/widgets/custom-postit/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h2>Configure Custom APIs PostIt Widget</h2>
<div layout="row" layout-align="start" flex>
<md-input-container flex="25">
<label>Columns:</label>
<input ng-model="ctrl.vm.columns" type="number" min="1" max="2" />
<input ng-model="ctrl.vm.columns" type="number" min="1" max="3" />
</md-input-container>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions docs/dist/app/widgets/custom-postit/custom-postit.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ custom-post-it .two-column .content {
margin-right: 12px;
}

custom-post-it .three-column .content {
width: 30%;
margin-right: 10px;
}

custom-post-it .content:before {
content: "";
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/app/widgets/custom-postit/custom-postit.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<md-button title="Configure" class="configure-widget md-icon-button md-mini" ng-show="editable" ng-click="ctrl.config()">
<md-icon>settings</md-icon>
</md-button>
<div ng-class="{'two-column': data.columns == 2, 'one-column' : data.columns != 2}">
<div ng-class="{'two-column': data.columns == 2, 'three-column': data.columns == 3, 'one-column' : data.columns != 2}">
<div ng-repeat="item in ctrl.list" ng-class="item.colorClass" class="content">
<div class="header" ng-if="data.header">{{item.title}}</div>
<img ng-if="item.avatarUrl" src="{{item.avatarUrl}}" alt="avatar" />
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/app/widgets/tfs-postit/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h2>Configure TFS PostIt Widget</h2>

<md-input-container flex="25">
<label>Columns:</label>
<input ng-model="ctrl.vm.columns" type="number" min="1" max="2" />
<input ng-model="ctrl.vm.columns" type="number" min="1" max="3" />
</md-input-container>
</div>

Expand Down
5 changes: 4 additions & 1 deletion docs/dist/app/widgets/tfs-postit/tfs-postit.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ tfs-post-it .two-column .content {
width: 45%;
margin-right: 12px;
}

tfs-post-it .three-column .content {
width: 30%;
margin-right: 10px;
}

tfs-post-it .content:before {
content: "";
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/app/widgets/tfs-postit/tfs-postit.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<md-button title="Configure" class="configure-widget md-icon-button md-mini" ng-show="editable" ng-click="ctrl.config()">
<md-icon>settings</md-icon>
</md-button>
<div ng-class="{'two-column': data.columns == 2, 'one-column' : data.columns != 2}">
<div ng-class="{'three-column': data.columns == 3,'two-column': data.columns == 2, 'one-column' : data.columns != 2}">
<div ng-repeat="item in ctrl.list" ng-class="item.colorClass" class="content">
<div class="header" ng-if="data.header">{{item.title}}</div>
<img ng-if="item.avatarUrl" src="{{item.avatarUrl}}" alt="avatar" />
Expand Down
14 changes: 7 additions & 7 deletions docs/dist/node_modules/angular-animate/angular-animate.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 29acdc1

Please sign in to comment.