copay/js/services/compatibility.js

14 lines
336 B
JavaScript
Raw Normal View History

'use strict';
2014-10-30 12:13:56 -07:00
angular.module('copayApp.services').factory('Compatibility', function($rootScope) {
var root = {};
root.check = function (scope) {
copay.Compatibility.listWalletsPre8(function(wallets) {
scope.anyWallet = wallets.length > 0 ? true : false;
scope.oldWallets = wallets;
});
};
return root;
});