From 478dd930bb9800ddbe54261411204b5a461149f4 Mon Sep 17 00:00:00 2001 From: riknoll Date: Mon, 31 Aug 2015 14:28:14 -0700 Subject: [PATCH 1/4] Removed English warning from not latest version text --- www/_layouts/docs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/_layouts/docs.html b/www/_layouts/docs.html index 7a85f1df966..616c51142e2 100644 --- a/www/_layouts/docs.html +++ b/www/_layouts/docs.html @@ -149,7 +149,7 @@

{{ page.toc_text }}

{% endif %} From 4d72ce5355532359b06f44a40899a4d37dc1d992 Mon Sep 17 00:00:00 2001 From: riknoll Date: Mon, 31 Aug 2015 14:42:22 -0700 Subject: [PATCH 2/4] Removed support.html --- www/support.html | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 www/support.html diff --git a/www/support.html b/www/support.html deleted file mode 100644 index 0d84af58bc0..00000000000 --- a/www/support.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: cordova -title: Apache Cordova Support -permalink: /support/ ---- From dc950cef0dac1d4bf15f08cccd9ae55405f3d9c8 Mon Sep 17 00:00:00 2001 From: riknoll Date: Mon, 31 Aug 2015 15:59:19 -0700 Subject: [PATCH 3/4] Enabled the tooltips for the copy icons in plugin results --- www/static/plugins/plugin.jsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/www/static/plugins/plugin.jsx b/www/static/plugins/plugin.jsx index 12752dbcf6a..21d6126af4d 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 = ( -
- +
+
); } @@ -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(); From ca70810c5485b969a1d68d873e1ece1f705b6b8b Mon Sep 17 00:00:00 2001 From: riknoll Date: Tue, 1 Sep 2015 10:53:14 -0700 Subject: [PATCH 4/4] Fixed responsive layout of plugin results copy icon --- www/static/plugins/plugin.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/www/static/plugins/plugin.jsx b/www/static/plugins/plugin.jsx index 21d6126af4d..347e5b67081 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 = ( -
-
+ data-placement="auto" /> ); } return (
- {copyIcon}
-
+

{this.props.plugin.name}

v{this.props.plugin.version} by {this.props.plugin.author}

+
+ {copyIcon} +