This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WEBVTT FILE | |
1 | |
00:00:00.500 --> 00:00:02.000 D:vertical A:start | |
The Web is always changing | |
2 | |
00:00:02.500 --> 00:00:04.300 | |
and the way we access it is changing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//parent | |
class ParentController { | |
constructor(private ServiceName: any, private ServiceName2: any) {} | |
} | |
//parent tempalte | |
<component title="Employee History" service="$ctrl.ServiceName"> | |
<component title="Salary History" service="$ctrl.ServiceName2"> | |
//component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- use with image //--> | |
<HoverComponent [imageUrl]="url"> | |
<div class="article-info"> | |
<time>{{date}}</time> | |
<h1>{{title}}</h1> | |
</div> | |
</HoverComponent> | |
<!-- use with video //--> | |
<HoverComponent (onHover)="video.play()"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ImageContentComponent [fullWidth]="true" [image]="image_url"></ImageContentComponent> | |
<TextContentComponent title="Background" [content]="background_content"></TextContentComponent> | |
<ImageContentComponent [fullWidth]="true" [image]="image_url"></ImageContentComponent> | |
<TextContentComponent title="Results" [content]="results_content"></TextContentComponent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 1, | |
"type": "accent-contents", | |
"attributes": { | |
"order": 1, | |
"content": "<strong font-size=\"30px\">307,000</strong><p>The website managed over 307,000 visitors in the space of the first 2 days</p>" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<AccordionComponent> | |
<AccordionItemComponent *ngFor="item of someItems"> | |
<span header>item.title</span> | |
<div class="custom-styles"> | |
{{item.content}} | |
</div> | |
</AccordionItemComponent> | |
</AccordionComponent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ControllerType from 'controllers-types'; | |
@ControllerType(ControlerTypes.PopOver) | |
export default Ember.Route.extend({ | |
}); | |
App.PostsRoute = Ember.Route.extend({ | |
renderTemplate: function() { | |
this.render({ outlet: 'sidebar' }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"errors": { | |
"email": { | |
"source": { | |
"pointer": "\/data\/email" | |
}, | |
"detail": "There are no business hours added for this doctor." | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"day": "2", | |
"fromtime": "00:10:33", | |
"totime": "00:22:22" | |
}, | |
{ | |
"day": "3", | |
"fromtime": "00:01:23", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<BusinesHours> hours; | |
List<WeekViewModel> weeks; |