Adding angular-rx

This commit is contained in:
mick delaney
2015-06-29 14:43:57 +01:00
parent 6f04d25ad3
commit 6a7dd89393
2 changed files with 16 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/// <reference path="rx.angular.d.ts" />
var app = angular.module('testModule');
interface AppScope extends rx.angular.IRxScope {
}
app.controller('Ctrl', ($scope: AppScope) => {
this.inputObservable = $scope.$toObservable('term')
.throttle(400)
.safeApply($scope, (results: any) => {
this.results = results;
});
});
View File