mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import {Directive, ElementRef, Host, Optional} from 'angular2/angular2';
|
|
import {Content} from '../content/content';
|
|
import {throttle} from '../../util/util';
|
|
import {position, offset, CSS, raf} from '../../util/dom';
|
|
import {Config} from '../../config/config';
|
|
|
|
/**
|
|
* TODO
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-item-group',
|
|
host: {
|
|
'class': 'item-group'
|
|
}
|
|
})
|
|
export class ItemGroup {
|
|
/**
|
|
* TODO
|
|
* @param {ElementRef} elementRef TODO
|
|
*/
|
|
constructor(elementRef: ElementRef) {
|
|
this.ele = elementRef.nativeElement;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-item-group-title',
|
|
host: {
|
|
'class': 'item-group-title',
|
|
'[class.sticky]': 'isSticky'
|
|
}
|
|
})
|
|
export class ItemGroupTitle {
|
|
/**
|
|
* TODO
|
|
* @param {ElementRef} elementRef TODO
|
|
*/
|
|
constructor(private elementRef: ElementRef, config: Config, private content: Content) {
|
|
// make sure the sticky class gets set on the title
|
|
this.isSticky = true;
|
|
}
|
|
onInit() {
|
|
setTimeout(() => {
|
|
if(this.content.getStickyPolyfill()) {
|
|
this.content.getStickyPolyfill().add(this.elementRef.nativeElement);
|
|
}
|
|
})
|
|
}
|
|
}
|