You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/09/02 04:17:33 UTC

[1/4] docs commit: Removed English warning from not latest version text

Repository: cordova-docs
Updated Branches:
  refs/heads/cordova-website 80604cf01 -> 615087264


Removed English warning from not latest version text


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/3d52b9c9
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/3d52b9c9
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/3d52b9c9

Branch: refs/heads/cordova-website
Commit: 3d52b9c96f4b48e0a7958db66dd2fb6d14cbaa3d
Parents: 80604cf
Author: riknoll <ri...@microsoft.com>
Authored: Mon Aug 31 14:28:14 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Tue Sep 1 19:17:06 2015 -0700

----------------------------------------------------------------------
 www/_layouts/docs.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3d52b9c9/www/_layouts/docs.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs.html b/www/_layouts/docs.html
index 7a85f1d..616c511 100644
--- a/www/_layouts/docs.html
+++ b/www/_layouts/docs.html
@@ -149,7 +149,7 @@ analytics_id: UA-64283057-1
         <a href="{{ site.baseurl }}{{ page.url | replace:page.version,'edge' }}">
             <div class="alert alert-warning alert-dismissible" role="alert">
                 <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
-                <strong>Warning!</strong> {{ page.not_latest_warning_text }}
+                {{ page.not_latest_warning_text }}
             </div>
         </a>
         {% endif %}


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


[4/4] docs commit: Fixed responsive layout of plugin results copy icon. This closes #326.

Posted by db...@apache.org.
Fixed responsive layout of plugin results copy icon. This closes #326.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/61508726
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/61508726
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/61508726

Branch: refs/heads/cordova-website
Commit: 615087264bb193b7ff210759523e0400a564c4c3
Parents: f6d687b
Author: riknoll <ri...@microsoft.com>
Authored: Tue Sep 1 10:53:14 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Tue Sep 1 19:17:16 2015 -0700

----------------------------------------------------------------------
 www/static/plugins/plugin.jsx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/61508726/www/static/plugins/plugin.jsx
----------------------------------------------------------------------
diff --git a/www/static/plugins/plugin.jsx b/www/static/plugins/plugin.jsx
index 21d6126..347e5b6 100755
--- a/www/static/plugins/plugin.jsx
+++ b/www/static/plugins/plugin.jsx
@@ -59,28 +59,28 @@ var Plugin = React.createClass({
 
         if(this.props.plugin) {
             copyIcon = (
-                <div>
                     <img
                         id={"copy-" + this.props.plugin.name}
                         className="plugins-copy-to-clipboard"
                         src="{{ site.baseurl}}/static/img/copy-clipboard-icon.svg"
                         title="Copy cordova plugin add command to clipboard"
                         data-toggle="tooltip"
-                        data-placement="left" />
-                </div>
+                        data-placement="auto" />
             );
         }
 
         return (
             <div className="container plugin-results-result">
-                {copyIcon}
                 <div className="row">
-                    <div className="col-sm-8">
+                    <div className="col-sm-8 col-xs-8">
                         <span>
                             <h2><a href={npmLink} onClick={trackOutboundLink.bind(this, npmLink)} target="_blank">{this.props.plugin.name}</a></h2>
                             <p className="version_and_author">v{this.props.plugin.version} by <strong>{this.props.plugin.author}</strong></p>
                         </span>
                     </div>
+                    <div className="col-sm-4 col-xs-4">
+                        {copyIcon}
+                    </div>
                 </div>
                 <div className="row">
                     <div className="col-sm-8">


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


[2/4] docs commit: Removed support.html

Posted by db...@apache.org.
Removed support.html


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/07ef13a2
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/07ef13a2
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/07ef13a2

Branch: refs/heads/cordova-website
Commit: 07ef13a2390a6b40f1e8c99b2c25e0c3419054ac
Parents: 3d52b9c
Author: riknoll <ri...@microsoft.com>
Authored: Mon Aug 31 14:42:22 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Tue Sep 1 19:17:07 2015 -0700

----------------------------------------------------------------------
 www/support.html | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/07ef13a2/www/support.html
----------------------------------------------------------------------
diff --git a/www/support.html b/www/support.html
deleted file mode 100644
index 0d84af5..0000000
--- a/www/support.html
+++ /dev/null
@@ -1,5 +0,0 @@
----
-layout: cordova
-title: Apache Cordova Support
-permalink: /support/
----


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


[3/4] docs commit: Enabled the tooltips for the copy icons in plugin results

Posted by db...@apache.org.
Enabled the tooltips for the copy icons in plugin results


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/f6d687bf
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/f6d687bf
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/f6d687bf

Branch: refs/heads/cordova-website
Commit: f6d687bf207451b8f102746897c8a645aed4b9dd
Parents: 07ef13a
Author: riknoll <ri...@microsoft.com>
Authored: Mon Aug 31 15:59:19 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Tue Sep 1 19:17:07 2015 -0700

----------------------------------------------------------------------
 www/static/plugins/plugin.jsx | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f6d687bf/www/static/plugins/plugin.jsx
----------------------------------------------------------------------
diff --git a/www/static/plugins/plugin.jsx b/www/static/plugins/plugin.jsx
index 12752db..21d6126 100755
--- a/www/static/plugins/plugin.jsx
+++ b/www/static/plugins/plugin.jsx
@@ -59,8 +59,14 @@ var Plugin = React.createClass({
 
         if(this.props.plugin) {
             copyIcon = (
-                <div data-toggle="tooltip" data-placement="left" title="Copy cordova plugin add command to clipboard">
-                    <img id={"copy-" + this.props.plugin.name} src="{{ site.baseurl}}/static/img/copy-clipboard-icon.svg" className="plugins-copy-to-clipboard"/>
+                <div>
+                    <img
+                        id={"copy-" + this.props.plugin.name}
+                        className="plugins-copy-to-clipboard"
+                        src="{{ site.baseurl}}/static/img/copy-clipboard-icon.svg"
+                        title="Copy cordova plugin add command to clipboard"
+                        data-toggle="tooltip"
+                        data-placement="left" />
                 </div>
             );
         }
@@ -96,6 +102,9 @@ var Plugin = React.createClass({
     },
     componentDidMount: function() {
         this.setClipboardText();
+        if(this.props.plugin) {
+            $(this.getDOMNode()).find(".plugins-copy-to-clipboard").tooltip();
+        }
     },
     componentDidUpdate: function() {
         this.setClipboardText();


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