chore(): rename IonicKeyboard to Keyboard

This commit is contained in:
Adam Bradley
2015-10-16 12:00:42 -05:00
parent edd082bcd8
commit bb3b20727c
4 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ import {Component, ElementRef, Optional} from 'angular2/angular2';
import {Ion} from '../ion';
import {Config} from '../../config/config';
import {IonicKeyboard} from '../../util/keyboard';
import {Keyboard} from '../../util/keyboard';
import {ViewController} from '../nav/view-controller';
import {Animation} from '../../animations/animation';
import {ScrollTo} from '../../animations/scroll-to';
@@ -35,7 +35,7 @@ export class Content extends Ion {
* @param {ElementRef} elementRef A reference to the component's DOM element.
* @param {Config} config The config object to change content's default settings.
*/
constructor(elementRef: ElementRef, config: Config, keyboard: IonicKeyboard, @Optional() viewCtrl: ViewController) {
constructor(elementRef: ElementRef, config: Config, keyboard: Keyboard, @Optional() viewCtrl: ViewController) {
super(elementRef, config);
this.scrollPadding = 0;
this.keyboard = keyboard;