had typo in loadCss function. Should be loadCSS

This commit is contained in:
David Michael Gang
2016-03-14 11:40:05 +02:00
parent 0cd5f0a148
commit 14e862021b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ declare module angular.load {
interface IAngularLoadService {
loadScript(url:string): ng.IPromise<any>;
loadCss(url:string): ng.IPromise<any>;
loadCSS(url:string): ng.IPromise<any>;
}
}