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 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; +} 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 */ 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 */ 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:

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} 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
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: ''}); } }); 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:

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' } } }); 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() { 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 @@ diff --git a/navi.jsp b/navi.jsp index 89fb4c1..7a732f4 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" %> diff --git a/overlay/index.html b/overlay/index.html index d831ff9..28b374d 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. @@ -420,7 +420,7 @@

Defining custom close elements

-
+

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.

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); });