alpha39 updates

This commit is contained in:
Adam Bradley
2015-10-07 10:51:08 -05:00
parent a960069d01
commit 1befe94802
20 changed files with 55 additions and 252 deletions

View File

@ -1,11 +1,9 @@
import {Component, View, QueryList, ElementRef, EventEmitter, onInit,
Host, forwardRef, NgFor, NgIf, NgClass} from 'angular2/angular2';
import {Directive, Component, View, ElementRef, Host, NgIf, NgClass} from 'angular2/angular2';
import {Ion} from '../ion';
import {Animation} from 'ionic/animations/animation';
import {Gesture} from 'ionic/gestures/gesture';
import {DragGesture} from 'ionic/gestures/drag-gesture';
import {IonicComponent, IonicDirective} from '../../config/decorators';
import {IonicConfig} from '../../config/config';
import {dom} from 'ionic/util';
import {CSS} from '../../util/dom';
@ -14,6 +12,7 @@ import * as util from 'ionic/util';
import {Swiper} from './swiper-widget';
import {Scroll} from '../scroll/scroll';
/**
* Slides is a slide box implementation based on Swiper.js
*
@ -29,7 +28,7 @@ import {Scroll} from '../scroll/scroll';
* Licensed under MIT
*
*/
@IonicComponent({
@Component({
selector: 'ion-slides',
inputs: [
'loop',
@ -447,7 +446,7 @@ export class Slides extends Ion {
/**
* TODO
*/
@IonicComponent({
@Component({
selector: 'ion-slide',
inputs: ['zoom']
})
@ -471,7 +470,7 @@ export class Slide {
}
}
@IonicDirective({
@Directive({
selector: 'slide-lazy',
})
export class SlideLazy {