add head controller

This commit is contained in:
Matias Alejo Garcia 2016-08-19 09:51:13 -03:00
parent 8b74c621f7
commit 2c70caa7a8
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
4 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<widget id="com.bitpay.*NAMENOSPACE*" <widget id="com.bitpay.*BUNDLENAME*"
version="*VERSION*" version="*VERSION*"
android-versionCode="*ANDROIDVERSION*" android-versionCode="*ANDROIDVERSION*"
ios-CFBundleVersion="*VERSION*"> ios-CFBundleVersion="*VERSION*">

View File

@ -4,6 +4,7 @@
"nameNoSpace": "copay", "nameNoSpace": "copay",
"nameCase": "Copay", "nameCase": "Copay",
"nameCaseNoSpace": "Copay", "nameCaseNoSpace": "Copay",
"bundleName": "copay",
"url": "https://copay.io", "url": "https://copay.io",
"appDescription": "Copay Bitcoin Wallet", "appDescription": "Copay Bitcoin Wallet",
"winAppName": "CopayWallet", "winAppName": "CopayWallet",

View File

@ -6,7 +6,7 @@
"name": "bitpay", "name": "bitpay",
"description": "The BitPay Bitcoin Wallet", "description": "The BitPay Bitcoin Wallet",
"author": "BitPay", "author": "BitPay",
"version": "0.1.1", "version": "0.2.0",
"keywords": [ "keywords": [
"wallet", "wallet",
"copay", "copay",

View File

@ -1,6 +1,6 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head ng-controller="headController">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
@ -8,7 +8,7 @@
<meta name="format-detection" content="telephone=no"> <meta name="format-detection" content="telephone=no">
<link rel="stylesheet" type="text/css" href="css/ionic.min.css"> <link rel="stylesheet" type="text/css" href="css/ionic.min.css">
<link rel="stylesheet" type="text/css" href="css/copay.css"> <link rel="stylesheet" type="text/css" href="css/copay.css">
<title>{{index.appConfig.nameCase}} - {{index.appConfig.description}}</title> <title>{{appConfig.nameCase}} - {{appConfig.description}}</title>
<link rel="shortcut icon" href="img/favicon.ico"> <link rel="shortcut icon" href="img/favicon.ico">
</head> </head>
<body> <body>