Mini refactoring of config data to use native javascript types

This commit is contained in:
Philippe Pepos Petitclerc 2015-03-23 11:43:58 -04:00 committed by Frédéric Vachon
parent 72228d566d
commit 68124e223f

View File

@ -15,7 +15,7 @@ angular.module('adagios.config', [])
data = value;
};
this.$get = [function getConfigFactory() {
this.$get = [function () {
return new AdagiosConfig(data);
}];
});