You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/10/28 14:49:08 UTC

spec commit: CB-7887: Fix viewport meta tag declaration in HTML pages

Repository: cordova-mobile-spec
Updated Branches:
  refs/heads/master d0128ab2f -> 605d369c7


CB-7887: Fix viewport meta tag declaration in HTML pages


Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/605d369c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/605d369c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/605d369c

Branch: refs/heads/master
Commit: 605d369c7c568e8e0bbf32cf35eb9343d4825d11
Parents: d0128ab
Author: Ian Clelland <ic...@chromium.org>
Authored: Tue Oct 28 09:48:42 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Tue Oct 28 09:48:42 2014 -0400

----------------------------------------------------------------------
 cordova-plugin-whitelist/test/autotest/index.html           | 2 +-
 cordova-plugin-whitelist/test/autotest/pages/whitelist.html | 2 +-
 www/autotest/index.html                                     | 2 +-
 www/autotest/pages/all.html                                 | 2 +-
 www/autotest/pages/bridge.html                              | 2 +-
 www/autotest/pages/datauri.html                             | 2 +-
 www/autotest/pages/localXHR.html                            | 2 +-
 www/autotest/pages/platform.html                            | 2 +-
 www/autotest/pages/storage.html                             | 2 +-
 www/autotest/pages/whitelist.html                           | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/cordova-plugin-whitelist/test/autotest/index.html
----------------------------------------------------------------------
diff --git a/cordova-plugin-whitelist/test/autotest/index.html b/cordova-plugin-whitelist/test/autotest/index.html
index 5dfed56..6befac5 100644
--- a/cordova-plugin-whitelist/test/autotest/index.html
+++ b/cordova-plugin-whitelist/test/autotest/index.html
@@ -24,7 +24,7 @@
 <html>
   <head>
     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
-    <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+    <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
 
     <title>Cordova API Specs</title>
 

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/cordova-plugin-whitelist/test/autotest/pages/whitelist.html
----------------------------------------------------------------------
diff --git a/cordova-plugin-whitelist/test/autotest/pages/whitelist.html b/cordova-plugin-whitelist/test/autotest/pages/whitelist.html
index ca3712c..f521ca8 100644
--- a/cordova-plugin-whitelist/test/autotest/pages/whitelist.html
+++ b/cordova-plugin-whitelist/test/autotest/pages/whitelist.html
@@ -26,7 +26,7 @@
 <head>
   <title>Cordova: Whitelist API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/index.html
----------------------------------------------------------------------
diff --git a/www/autotest/index.html b/www/autotest/index.html
index 585810a..662f91f 100644
--- a/www/autotest/index.html
+++ b/www/autotest/index.html
@@ -24,7 +24,7 @@
 <html>
   <head>
     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
-    <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+    <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
 
     <title>Cordova API Specs</title>
 

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/all.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/all.html b/www/autotest/pages/all.html
index 8da5515..48cbf76 100644
--- a/www/autotest/pages/all.html
+++ b/www/autotest/pages/all.html
@@ -25,7 +25,7 @@
 <head>
   <title>Cordova: API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
 
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/bridge.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/bridge.html b/www/autotest/pages/bridge.html
index 822d9ec..094e820 100644
--- a/www/autotest/pages/bridge.html
+++ b/www/autotest/pages/bridge.html
@@ -26,7 +26,7 @@
 <head>
   <title>Cordova: Device API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/datauri.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/datauri.html b/www/autotest/pages/datauri.html
index 33474dd..afad960 100644
--- a/www/autotest/pages/datauri.html
+++ b/www/autotest/pages/datauri.html
@@ -24,7 +24,7 @@
 <head>
   <title>Cordova: Data URI tests</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/localXHR.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/localXHR.html b/www/autotest/pages/localXHR.html
index 10415f0..ed12c3d 100644
--- a/www/autotest/pages/localXHR.html
+++ b/www/autotest/pages/localXHR.html
@@ -25,7 +25,7 @@
 <head>
   <title>Cordova: Local XHR Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
 
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/platform.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/platform.html b/www/autotest/pages/platform.html
index 3ddecd0..6ac8d47 100644
--- a/www/autotest/pages/platform.html
+++ b/www/autotest/pages/platform.html
@@ -26,7 +26,7 @@
 <head>
   <title>Cordova: Platform API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/storage.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/storage.html b/www/autotest/pages/storage.html
index 0f836e9..f32541c 100644
--- a/www/autotest/pages/storage.html
+++ b/www/autotest/pages/storage.html
@@ -26,7 +26,7 @@
 <head>
   <title>Cordova: Storage API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/605d369c/www/autotest/pages/whitelist.html
----------------------------------------------------------------------
diff --git a/www/autotest/pages/whitelist.html b/www/autotest/pages/whitelist.html
index ececfa2..d98bbc7 100644
--- a/www/autotest/pages/whitelist.html
+++ b/www/autotest/pages/whitelist.html
@@ -26,7 +26,7 @@
 <head>
   <title>Cordova: Whitelist API Specs</title>
 
-  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0;" />
+  <meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes, initial-scale=1.0" />
   <!-- Load jasmine -->
   <link href="../jasmine.css" rel="stylesheet"/>
   <script type="text/javascript" src="../jasmine.js"></script>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org