From ab25d4c7b864b89b0920c68775170cc81dd0dfcc Mon Sep 17 00:00:00 2001 From: Christian Ebert Date: Mon, 6 Dec 2010 02:22:35 +0100 Subject: [PATCH 01/18] Generated close button is an a tag (issue264) --- overlay/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/index.html b/overlay/index.html index d831ff9..953f51f 100644 --- a/overlay/index.html +++ b/overlay/index.html @@ -420,7 +420,7 @@

Defining custom close elements

-
+

From b6f0d92379cf51668532a1456da091aaf11b7870 Mon Sep 17 00:00:00 2001 From: Christian Ebert Date: Mon, 7 Feb 2011 07:55:41 +0000 Subject: [PATCH 02/18] Resurrect .gitignore Was trashed in e7bf07af37e3aa2c5b81b7990a01533dbdd1a868. --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..539c2bd --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# patch +*.rej +*.orig + +# vim +*~ + +# emacs +\#*\# +\.\#* + +# MacOS directory store +.DS_Store From 7e48ea4092151dea1de64041a9b49a905f5dcfcd Mon Sep 17 00:00:00 2001 From: Brian Maltzan Date: Tue, 28 Jun 2011 06:21:13 -0700 Subject: [PATCH 03/18] trough -> through --- navi.jsp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/navi.jsp b/navi.jsp index ed8efc8..0e159bc 100644 --- a/navi.jsp +++ b/navi.jsp @@ -1,4 +1,3 @@ - <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="/WEB-INF/flowplayer.tld" prefix="f" %> @@ -207,7 +206,7 @@

- If you want to contribute please email your thougths from Github and send the contributions trough fork queue. + If you want to contribute please email your thougths from Github and send the contributions through fork queue.

From 6a6dd9d860e869326862fd3a1d75f7099ccaffd3 Mon Sep 17 00:00:00 2001 From: Alexander Ward Date: Tue, 16 Aug 2011 13:19:39 -0500 Subject: [PATCH 04/18] Fixed the link in release notes to point to the Website repo instead of the jquery tools repo. --- release-notes/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/index.html b/release-notes/index.html index 1705af8..346ddf3 100644 --- a/release-notes/index.html +++ b/release-notes/index.html @@ -210,7 +210,7 @@

jQuery best practices

Github

- Two GitHub repositories have been created: jQuery Tools and the Website. Now it's easier to contribute. + Two GitHub repositories have been created: jQuery Tools and the Website. Now it's easier to contribute.

From 6e8db0a87913a2d403ea79632a68830069c75a00 Mon Sep 17 00:00:00 2001 From: bradrobertson Date: Sun, 28 Aug 2011 19:32:53 -0400 Subject: [PATCH 05/18] spelling mistakes --- navi.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navi.jsp b/navi.jsp index 0e159bc..616e709 100644 --- a/navi.jsp +++ b/navi.jsp @@ -206,7 +206,7 @@

- If you want to contribute please email your thougths from Github and send the contributions through fork queue. + If you want to contribute please email your thoughts from Github and send the contributions through fork queue.

From a354378dad78da56764eeb250c012f51cf8c13ae Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 31 Aug 2011 23:24:51 -0400 Subject: [PATCH 06/18] clarify that top in pixels should be a number, not a string --- overlay/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/index.html b/overlay/index.html index d831ff9..2e76416 100644 --- a/overlay/index.html +++ b/overlay/index.html @@ -286,7 +286,7 @@

Configuration

top '10%' - Specifies how far from the top edge of the screen the overlay should be placed. Acceptable values are an integer number specifying a distance in pixels, a string (such as '15%') specifying a percentage value or "center" in which case the overlay is vertically centered. Percentage values work consistently at different screen resolutions. + Specifies how far from the top edge of the screen the overlay should be placed. Acceptable values are an integer number specifying a distance in pixels (such as 100), a string (such as '15%') specifying a percentage value or "center" in which case the overlay is vertically centered. Percentage values work consistently at different screen resolutions. From 8e4f443f1cbe1ea882160f3d94f3df7e827224d4 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 31 Aug 2011 23:38:00 -0400 Subject: [PATCH 07/18] added missing overlay-minimal file to demo css --- css/overlay-minimal.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 css/overlay-minimal.css diff --git a/css/overlay-minimal.css b/css/overlay-minimal.css new file mode 100644 index 0000000..63fc9db --- /dev/null +++ b/css/overlay-minimal.css @@ -0,0 +1,32 @@ + +/* the overlayed element */ +.overlay { + + /* must be initially hidden */ + display:none; + + /* place overlay on top of other elements */ + z-index:10000; + + /* styling */ + background-color:#333; + + width:675px; + min-height:200px; + border:1px solid #666; + + /* CSS3 styling for latest browsers */ + -moz-box-shadow:0 0 90px 5px #000; + -webkit-box-shadow: 0 0 90px #000; +} + +/* close button positioned on upper right corner */ +.overlay .close { + background-image:url(../img/overlay/close.png); + position:absolute; + right:-15px; + top:-15px; + cursor:pointer; + height:35px; + width:35px; +} From 07e178cacf41c0bac1010ac02a462b92f7bf9770 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 31 Aug 2011 23:42:05 -0400 Subject: [PATCH 08/18] fix comments and backgorund position on tabs css --- css/tabs.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/tabs.css b/css/tabs.css index a1e584e..d30b694 100644 --- a/css/tabs.css +++ b/css/tabs.css @@ -51,7 +51,7 @@ ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a { color:#000 !important; } -/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */ +/* Different widths for tabs: use a class name: s, l, xl */ /* width 1 */ @@ -60,9 +60,9 @@ ul.tabs a.s:hover { background-position: -553px -31px; } ul.tabs a.s.current { background-position: -553px -62px; } /* width 2 */ -ul.tabs a.l { background-position: -248px -0px; width:174px; } -ul.tabs a.l:hover { background-position: -248px -31px; } -ul.tabs a.l.current { background-position: -248px -62px; } +ul.tabs a.l { background-position: -247px -0px; width:174px; } +ul.tabs a.l:hover { background-position: -247px -31px; } +ul.tabs a.l.current { background-position: -247px -62px; } /* width 3 */ From b2a8c3c7922075a06b1cc725e08cd362a57cfbb7 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 31 Aug 2011 23:52:34 -0400 Subject: [PATCH 09/18] updating docs to reflect proper class usage on tab slideshow --- demos/tabs/slideshow.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/tabs/slideshow.html b/demos/tabs/slideshow.html index b3175ba..0a569b5 100644 --- a/demos/tabs/slideshow.html +++ b/demos/tabs/slideshow.html @@ -14,12 +14,12 @@

HTML coding

- The HTML setup is similar to the normal tab setup except that we have the "next" and "prev" action buttons available and the tabs are placed below the panes. + The HTML setup is similar to the normal tab setup except that we have the "forward" and "back" action buttons available and the tabs are placed below the panes.

- +back
@@ -36,7 +36,7 @@

HTML coding

- +forward
From 22163584da61cd04be07380aa542c21ca4bae599 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 7 Sep 2011 21:33:57 -0400 Subject: [PATCH 10/18] update the expose form demo to work --- demos/toolbox/expose/form.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/toolbox/expose/form.htm b/demos/toolbox/expose/form.htm index 724d54c..355eb52 100644 --- a/demos/toolbox/expose/form.htm +++ b/demos/toolbox/expose/form.htm @@ -77,7 +77,7 @@ // when "unexposed", return to original background color onClose: function() { - form.css({backgroundColor: null}); + form.css({backgroundColor: ''}); } }); From 64448cb3adcb17c65d08a7d2faafd6bfa5f9c500 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 7 Sep 2011 22:55:42 -0400 Subject: [PATCH 11/18] update styling for better horizontal transitions on accordion --- css/tabs-accordion-horizontal.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/tabs-accordion-horizontal.css b/css/tabs-accordion-horizontal.css index 87cd227..ae1c616 100644 --- a/css/tabs-accordion-horizontal.css +++ b/css/tabs-accordion-horizontal.css @@ -33,6 +33,7 @@ float:left; display:none; margin-right:10px; + overflow:hidden; } /* content inside a pane should have fixed width */ From 8bd82e0ee4d5bdb98b194c7782f6282f6829f520 Mon Sep 17 00:00:00 2001 From: bradrobertson Date: Sun, 11 Sep 2011 16:37:46 -0400 Subject: [PATCH 12/18] fix issues/482 (on tools issues) --- demos/dateinput/customize.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/dateinput/customize.htm b/demos/dateinput/customize.htm index e1af235..39383da 100644 --- a/demos/dateinput/customize.htm +++ b/demos/dateinput/customize.htm @@ -13,7 +13,7 @@ - + ${html} From 51ecde82ecc3c1fd5a6ce0e0dc767a61ae5618be Mon Sep 17 00:00:00 2001 From: bradrobertson Date: Mon, 12 Sep 2011 07:48:07 -0400 Subject: [PATCH 13/18] update the mask id in docs --- demos/toolbox/expose/video.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/toolbox/expose/video.html b/demos/toolbox/expose/video.html index 0d6f685..873ec92 100644 --- a/demos/toolbox/expose/video.html +++ b/demos/toolbox/expose/video.html @@ -11,7 +11,7 @@

CSS code

- By default, the Expose tool uses the id "mask" for the mask. You can customize it by simply adjusting its CSS properties. Here are our customizations for this demo: + By default, the Expose tool uses the id "exposeMask" for the mask. You can customize it by simply adjusting its CSS properties. Here are our customizations for this demo:

From f9380ca939283028b7ddc5875527378ca8ad09fd Mon Sep 17 00:00:00 2001 From: Christian Ebert Date: Wed, 14 Sep 2011 07:40:18 +0100 Subject: [PATCH 14/18] flashembed: feed flowplayer a valid clip url --- demos/toolbox/flashembed/index.html | 2 +- demos/toolbox/flashembed/index3.htm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/toolbox/flashembed/index.html b/demos/toolbox/flashembed/index.html index fefe190..32cb037 100644 --- a/demos/toolbox/flashembed/index.html +++ b/demos/toolbox/flashembed/index.html @@ -104,7 +104,7 @@

3. Configuring Flash with JSON

clip: { autoPlay: false, autoBuffering: true, - url: 'http://e1h13.simplecdn.net/flowplayer/flowplayer.flv' + url: 'http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv' } } }); diff --git a/demos/toolbox/flashembed/index3.htm b/demos/toolbox/flashembed/index3.htm index 99b8048..71fce75 100644 --- a/demos/toolbox/flashembed/index3.htm +++ b/demos/toolbox/flashembed/index3.htm @@ -13,7 +13,7 @@ clip: { autoPlay: false, autoBuffering: true, - url: 'http://e1h13.simplecdn.net/flowplayer/flowplayer.flv' + url: 'http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv' } } }); From ec3a9adf5baa732e9a72968a4330f7bb68ca0048 Mon Sep 17 00:00:00 2001 From: Brad Robertson Date: Wed, 14 Sep 2011 22:29:35 -0400 Subject: [PATCH 15/18] add evt to click handler --- tabs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabs/index.html b/tabs/index.html index 6458e37..a658184 100644 --- a/tabs/index.html +++ b/tabs/index.html @@ -418,7 +418,7 @@

Scripting API

api.next(); // send google analytics when tabs are clicked -api.onClick(function(index) { +api.onClick(function(e, index) { _tracker._trackEvent("Documentation", "Tabs", "tab " + index); });
From 01a20cad228896bc0a679e0e81277f85fced373d Mon Sep 17 00:00:00 2001 From: bradrobertson Date: Thu, 15 Sep 2011 16:29:02 -0400 Subject: [PATCH 16/18] update scripting docs --- documentation/scripting.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/scripting.html b/documentation/scripting.html index e29230e..ed2ef1a 100644 --- a/documentation/scripting.html +++ b/documentation/scripting.html @@ -178,7 +178,7 @@

1. In the configuration

-$(".tabs").tabs({ +$(".tabs").tabs('.panes > div', { // do your own stuff here onClick: function() { From f9bbb1a8666dff9fabe7c1d633c1273712883c86 Mon Sep 17 00:00:00 2001 From: Tero Piirainen Date: Fri, 23 Sep 2011 14:52:15 +0300 Subject: [PATCH 17/18] documentation/tabs.jsf --- documentation/tabs.jsf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/tabs.jsf b/documentation/tabs.jsf index 0d9f0ba..8ab89dc 100644 --- a/documentation/tabs.jsf +++ b/documentation/tabs.jsf @@ -2,8 +2,8 @@ From 4437e014aceb3ee5de1443d3df61fdb004d91e2a Mon Sep 17 00:00:00 2001 From: Christian Ebert Date: Wed, 28 Sep 2011 16:03:35 +0100 Subject: [PATCH 18/18] Fix link to gallery demo --- demos/combine/scrollable-gallery-with-tooltips.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/combine/scrollable-gallery-with-tooltips.html b/demos/combine/scrollable-gallery-with-tooltips.html index a9128c5..f4f114c 100644 --- a/demos/combine/scrollable-gallery-with-tooltips.html +++ b/demos/combine/scrollable-gallery-with-tooltips.html @@ -61,7 +61,7 @@

CSS coding

Overlayed Gallery

- Our gallery follows exactly the same principles as in the Using the gallery plugin demo. Our scrollable items are properly setup for the gallery plugin and we have included the following overlay on the page: + Our gallery follows exactly the same principles as in the Using the gallery plugin demo. Our scrollable items are properly setup for the gallery plugin and we have included the following overlay on the page: