This file contains hidden or 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
/* | |
* jQuery Alvaro's Collaptable 1.0.4 | |
* | |
* Copyright (c) 2010 Alvaro Véliz Marín - yo@alvaroveliz.cl | |
* | |
* Licensed under the MIT license: | |
* http://www.opensource.org/licenses/mit-license.php | |
* | |
* More info in http://github.com/alvaroveliz/aCollapTable | |
*/ |
This file contains hidden or 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
<!-- | |
Header style 1 | |
--> | |
<div class="td-header-wrap td-header-style-1"> | |
<div class="td-header-top-menu-full"> | |
<div class="td-container td-header-row td-header-top-menu"> | |
<?php td_api_top_bar_template::_helper_show_top_bar()?> | |
</div> | |
</div> |
This file contains hidden or 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
<!-- | |
Header style 1 | |
--> | |
<div class="td-header-wrap td-header-style-1"> | |
<div class="td-header-top-menu-full"> | |
<div class="td-container td-header-row td-header-top-menu"> | |
<?php td_api_top_bar_template::_helper_show_top_bar()?> | |
</div> | |
</div> |
This file contains hidden or 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
class PlaylistController { | |
todos: Todo[]; | |
filter: string; | |
static $inject = ['$mdSidenav']; | |
public $mdSidenav: ng.material.ISidenavObject; | |
toggleLeft = this.buildToggler('left'); | |
toggleRight = this.buildToggler('right'); | |
constructor(private $mdSidenav: ng.material.ISidenavService) { |
This file contains hidden or 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 {Component, Input, OnInit} from '@angular/core'; | |
import { Http, Response } from '@angular/http'; | |
import {Observable} from 'rxjs/Rx'; | |
// Services | |
import {BenefitsMainService} from '../services/benefits.service'; | |
// Pipes | |
import {BenefitsMainFilterPipe} from '../pipes/benefits.main.pipe'; | |
// Child Components | |
import { |
This file contains hidden or 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
<div class="single-benefits-container" *ngFor="let benefit of posibleBenefits; let i = index"> | |
<h5 *ngIf="i == 0">Eventuelle Leistungen</h5> | |
<div class="panel panel-danger single-benefit-panel posible"> | |
<div class="panel-heading"> | |
<h3 class="panel-title">{{benefit.header}}</h3> | |
</div> | |
<div class="panel-body"> | |
<div class="status"> | |
<button class="btn btn-primary" *ngIf="benefit.status">true</button> |
This file contains hidden or 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
@Component({ | |
selector: 'benefits-possible', | |
moduleId: module.id, | |
templateUrl: '../views/benefits.possible.component.html', | |
styleUrls: ['../assets/styles/benefits.main.css'], | |
directives: [BenefitFromComponent ,BenefitPropertyFromComponent] | |
}) | |
export class BenefitsPossibleComponent implements OnChanges { |