Fixed Test

This commit is contained in:
Maik
2015-01-05 12:38:51 +01:00
parent 398cc1eb89
commit 9ec8c66f84
@@ -14,7 +14,7 @@ interface TestScope extends ng.IScope {
module ng.local.storage.tests {
export class TestController {
constructor($scope: TestScope, localStorageService: ng.local.storage.ILocalStorageService) {
constructor($scope: TestScope, localStorageService: ng.local.storage.ILocalStorageService<string>) {
// isSupported
if (localStorageService.isSupported) {
// do something
@@ -72,4 +72,4 @@ app.config(function (localStorageServiceProvider: ng.local.storage.ILocalStorage
.setNotify(true, true);
});
app.controller('TestController', ng.local.storage.tests.TestController);
app.controller('TestController', ng.local.storage.tests.TestController);