Added price chart
This commit is contained in:
parent
a761b58ab0
commit
c737e14d17
10 changed files with 891 additions and 3 deletions
26
src/js/services/pricechartService.js
Normal file
26
src/js/services/pricechartService.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
'use strict';
|
||||
angular.module('copayApp.services').factory('pricechartService', function($http, $log, lodash, moment, storageService, configService, platformInfo, nextStepsService, homeIntegrationsService) {
|
||||
var root = {};
|
||||
var credentials = {};
|
||||
|
||||
var homeItem = {
|
||||
name: 'pricechart',
|
||||
title: 'Bitcoin Price Chart',
|
||||
icon: 'icon-bitcoincom',
|
||||
sref: 'tabs.pricechart',
|
||||
};
|
||||
|
||||
var nextStepItem = {
|
||||
name: 'pricechart',
|
||||
title: 'Bitcoin Price Chart',
|
||||
icon: 'icon-bitcoincom',
|
||||
sref: 'tabs.pricechart',
|
||||
};
|
||||
|
||||
var register = function() {
|
||||
nextStepsService.register(nextStepItem);
|
||||
};
|
||||
|
||||
register();
|
||||
return root;
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue