Added price chart

This commit is contained in:
magmahindenburg 2017-07-05 11:33:25 +09:00
commit c737e14d17
10 changed files with 891 additions and 3 deletions

View 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;
});