* deploy stuff added
* missing save icon added to the button * prod api url changed * slide preview fixed to cover the whole screen
This commit is contained in:
@@ -38,16 +38,20 @@
|
||||
|
||||
<button type="submit" class="ui button"
|
||||
[class.positive]="canSave"
|
||||
[class.disabled]="!canSave">Save</button>
|
||||
[class.disabled]="!canSave"><i class="save outline icon"></i>Save</button>
|
||||
<button type="button" class="ui button"
|
||||
[class.primary]="canPreview"
|
||||
[class.disabled]="!canPreview"
|
||||
(click)="preview()"><i class="search icon"></i>Preview</button>
|
||||
<a class="ui button orange"
|
||||
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"
|
||||
target="_blank"><i class="question circle outline icon"></i>MD howto</a>
|
||||
<a class="ui button"
|
||||
[routerLink]="['/admin/slides']"><i class="left angle icon"></i>Back to slides list</a>
|
||||
</form>
|
||||
|
||||
<app-slide [data]="renderedPreview"
|
||||
<app-slide class="preview"
|
||||
[data]="renderedPreview"
|
||||
[preview]="true"
|
||||
[(visible)]="previewVisible"
|
||||
*ngIf="previewVisible"></app-slide>
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
id="team"
|
||||
name="team"
|
||||
[(ngModel)]="selectedTeam"
|
||||
[options]="options"
|
||||
labelField="name"
|
||||
[isSearchable]="false"
|
||||
#select>
|
||||
|
||||
@@ -14,6 +14,10 @@
|
||||
padding: 4rem;
|
||||
text-align: center;
|
||||
}
|
||||
:host.preview {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
:host ::ng-deep div.present {
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
apiUrl: 'http://localhost:8080',
|
||||
apiUrl: 'http://ttt-api.tsp.eth.ericsson.se/mtastv-api',
|
||||
commitTrackerApiUrl: 'https://mtas-trex.rnd.ki.sw.ericsson.se:8080/committracker/api/'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user