This commit is contained in:
Rossen Hristov
2015-05-20 13:29:26 +03:00
parent 1b212bfce5
commit be188119f0
2 changed files with 0 additions and 3 deletions

View File

@ -46,7 +46,6 @@ export var hintProperty = new dependencyObservable.Property(
new proxy.PropertyMetadata("")
);
function onKeyboardTypePropertyChanged(data: dependencyObservable.PropertyChangeData) {
var editableTextBase = <EditableTextBase>data.object;
editableTextBase._onKeyboardTypePropertyChanged(data);

View File

@ -2,7 +2,6 @@
import dependencyObservable = require("ui/core/dependency-observable");
import textBase = require("ui/text-base");
import enums = require("ui/enums");
import color = require("color");
// merge the exports of the common file with the exports of this file
declare var exports;
@ -78,7 +77,6 @@ export class TextView extends common.TextView {
}
public _onHintPropertyChanged(data: dependencyObservable.PropertyChangeData) {
var textView = <TextView>data.object;
this._refreshHintState(data.newValue);
}