1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00
OpenSTF/res/app/components/stf/settings/index.js
Gunther Brunner eaaf6a36bd - Add Local settings.
- Add Language settings synced back.
2014-03-13 21:03:41 +09:00

10 lines
312 B
JavaScript

require('localforage')
require('angular-localForage')
module.exports = angular.module('stf/settings', [
'LocalForageModule'
])
.config(['$localForageProvider', function ($localForageProvider) {
$localForageProvider.setPrefix('stf.v0');
}])
.factory('SettingsService', require('./settings-service'))