You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
919 B
31 lines
919 B
3 years ago
|
/*!
|
||
|
* angular-translate - v2.4.2 - 2014-10-21
|
||
|
* http://github.com/angular-translate/angular-translate
|
||
|
* Copyright (c) 2014 ; Licensed MIT
|
||
|
*/
|
||
|
angular.module('pascalprecht.translate').factory('$translateStaticFilesLoader', [
|
||
|
'$q',
|
||
|
'$http',
|
||
|
function ($q, $http) {
|
||
|
return function (options) {
|
||
|
if (!options || (!angular.isString(options.prefix) || !angular.isString(options.suffix))) {
|
||
|
throw new Error('Couldn\'t load static files, no prefix or suffix specified!');
|
||
|
}
|
||
|
var deferred = $q.defer();
|
||
|
$http(angular.extend({
|
||
|
url: [
|
||
|
options.prefix,
|
||
|
options.key,
|
||
|
options.suffix
|
||
|
].join(''),
|
||
|
method: 'GET',
|
||
|
params: ''
|
||
|
}, options.$http)).success(function (data) {
|
||
|
deferred.resolve(data);
|
||
|
}).error(function (data) {
|
||
|
deferred.reject(options.key);
|
||
|
});
|
||
|
return deferred.promise;
|
||
|
};
|
||
|
}
|
||
|
]);
|