flosight-ui
Version:
An open-source frontend for the Flosight API. The Flosight API provides you with a convenient, powerful and simple way to query and broadcast data on the florincoin network and build your own services with it.
39 lines (35 loc) • 1 kB
JavaScript
;
var defaultLanguage = localStorage.getItem('flosight-language') || 'en';
var defaultCurrency = localStorage.getItem('flosight-currency') || 'FLO';
angular.module('flosight',[
'ngAnimate',
'ngResource',
'ngRoute',
'ngProgress',
'ui.bootstrap',
'ui.route',
'gettext',
'angularMoment',
'flosight.system',
'flosight.socket',
'flosight.api',
'flosight.blocks',
'flosight.transactions',
'flosight.address',
'flosight.search',
'flosight.status',
'flosight.connection',
'flosight.currency',
'flosight.messages'
]);
angular.module('flosight.system', []);
angular.module('flosight.socket', []);
angular.module('flosight.api', []);
angular.module('flosight.blocks', []);
angular.module('flosight.transactions', []);
angular.module('flosight.address', []);
angular.module('flosight.search', []);
angular.module('flosight.status', []);
angular.module('flosight.connection', []);
angular.module('flosight.currency', []);
angular.module('flosight.messages', []);