- 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.
- 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.
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:
- 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: