Skip to content

Commit

Permalink
v1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tipiirai committed Sep 22, 2010
1 parent 58519f1 commit cfd682c
Show file tree
Hide file tree
Showing 7 changed files with 179 additions and 38 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- run jquerytools/build.xml first -->
<project name="jQuery.Tools" default="www">

<property name="version" value="1.2.4"/>
<property name="version" value="1.2.5"/>
<property name="www" value="/opt/flowplayer/webapp/tools"/>
<property name="js" value="${www}/download/${version}"/>
<property name="build" value="../jquerytools/build/${version}"/>
Expand Down
8 changes: 6 additions & 2 deletions demos/dateinput/css/skin1.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,27 @@
font-size:18px;
padding:4px;
text-align:center;
width:194px;
width:194px;

-moz-box-shadow:0 0 10px #eee inset;
-webkit-box-shadow:0 0 10px #eee inset;
}

/* calendar root element */
#calroot {
/* place on top of other elements. set a higher value if nessessary */
z-index:1;
z-index:10000;

margin-top:-1px;
width:198px;
padding:2px;
background-color:#fff;
font-size:11px;
border:1px solid #ccc;

-moz-border-radius:5px;
-webkit-border-radius:5px;

-moz-box-shadow: 0 0 15px #666;
-webkit-box-shadow: 0 0 15px #666;
}
Expand Down
76 changes: 43 additions & 33 deletions demos/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,31 @@


<style>
#demos {
background:#fff url(/img/global/gradient/h150_reverse.png) repeat-x scroll 0 -95px;
padding:30px 0 30px 40px;
border:1px solid #ddd;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}

.col {
padding:15px 0 0 24px;
margin-right:0;
width:300px;
border-right:2px dotted #ccc;
height:1050px;
background: url(/img/global/gradient/h150_reverse.png) repeat-x scroll 0 -95px;
border-top:1px solid #ccc;
border-bottom:1px solid #eee;
margin-right:0;
width:280px;
border-right:1px dotted #ccc;
float:left;
}

#col0 {
border-left:2px dotted #ccc;
#col1, #col2 {
padding-left:30px;
}

#col2 {
margin-right:0px;
border-right:0px;
width:310px;
}


.cat {
width:230px;
margin-top:25px;
Expand Down Expand Up @@ -81,28 +87,32 @@
$("#jqt3").addClass("active");
</script>

<c:forTokens items="ui,form,toolbox" var="main" delims="," varStatus="j">

<div class="col" id="col${j.index}">

<h2>${main} ${j.index < 2 ? '<strong>TOOLS</strong>' : ''}</h2>

<div class="pic" id="pic-${main}"></div>

<c:forEach items='<%= area.getCategories((String)pageContext.getAttribute("main")) %>' var="cat" varStatus="i">

<div class="cat ${cat.title == 'Combinations' ? 'combinations' : ''}">
<h3 title="${cat.description}">${cat.title}</h3>

<c:forEach items="${cat.demos}" var="demo">
<a href="${demo.path}">${demo.title}</a>
</c:forEach>
</div>
<div id="demos">
<c:forTokens items="ui,form,toolbox" var="main" delims="," varStatus="j">

<div class="col" id="col${j.index}">

<c:if test="${i.index == 3}"><br clear="all" /></c:if>
<h2>${main} ${j.index < 2 ? '<strong>TOOLS</strong>' : ''}</h2>

<div class="pic" id="pic-${main}"></div>

<c:forEach items='<%= area.getCategories((String)pageContext.getAttribute("main")) %>' var="cat" varStatus="i">

<div class="cat ${cat.title == 'Combinations' ? 'combinations' : ''}">
<h3 title="${cat.description}">${cat.title}</h3>

</c:forEach>
<c:forEach items="${cat.demos}" var="demo">
<a href="${demo.path}">${demo.title}</a>
</c:forEach>
</div>

<c:if test="${i.index == 3}"><br clear="all" /></c:if>

</c:forEach>

</div>

</div>

</c:forTokens>
</c:forTokens>

<div class="clear"></div>
</div>
5 changes: 5 additions & 0 deletions demos/validator/css/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
border:1px solid #E1E16D;
padding:4px 10px;
color:#000;
display:none;

-moz-border-radius:4px;
-webkit-border-radius:4px;
Expand All @@ -69,6 +70,10 @@
-webkit-box-shadow:0 0 6px #ddd;
}

.error p {
margin:0;
}

/* field label */
label {
display:block;
Expand Down
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#tease {
background-image:url(${cdn}${jqt}/img/1.2/banner.jpg);
margin-top:30px;
display:block;
height:148px;
}
</style>

Expand Down
122 changes: 121 additions & 1 deletion release-notes/version-1.2.x.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,129 @@ <h1 id="hero">
<a href="../index.html">Introducing v1.2.0 &raquo;</a> Bug fix releases
</div>

<a name="1.2.5"></a>
<h2 class="first">Sep 22, 2010. Version <em>1.2.5</em></h2>

<h3>Miscalleneous</h3>

<ul>
<li>
dateinput, tooltip and validator error messages now position correctly on iPad. native jQuery offset() method returns incorrect value on iPad.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/161">Issue 161</a>
overlay apple effect with fixed positioning now stays in viewport while window is scrolled. Thanks <a href="http://github.com/snozwoz">snozwoz</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/153">Issue 153</a>
removed redundant line from the history tool. Thanks <a href="http://github.com/maksimc">maksimc</a>.
</li>
<li>
<a href="http://flowplayer.org/tools/forum/20/41614">Forums</a>
fixed an annoying <samp>'d is undefined'</samp> error in firebug. <strong>Thanks</strong> to this crazy list of helpers! <samp> lubosdz, jansc, kingjeffrey, kucrut, fizzystutter, wasDag, perugini, Muse, skrile, natoinet, zhaeon, korsakov, pellekrogholt, markstahler, godzone, DiNASTY, daemonk, er777, abstractic, james@planetretail, heikki, mchristie, ennox, ke1g, retoo</samp>
</li>

</ul>

<h3>Scrollable</h3>

<ul>
<li>
ability to seek backward and forward with iPod/iPhone finger touch
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/172">Issue 172</a>
if circular:false the "prev page" action now does have an initial "disabled" CSS class name. Thanks <a href="http://github.com/picasso">picasso</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/10">Issue 10</a>
long awaited fix for autoscroll plugin. A solid play/pause behaviour. Thanks <a href="http://github.com/custa1200">custa1200</a>.
</li>
</ul>

<h3>Validator</h3>

<ul>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/153">Issue 153</a>
changed the error message element inside the error container from &lt;span/&gt; to &lt;p/&gt;. Thanks <a href="http://github.com/maksimc">maksimc</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/166">Issue 166</a>
URL regex in validator now allows "&" and "+" characters in query string. Thanks <a href="http://github.com/selwin">selwin</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/150">Issue 150</a>
Calling validator twice no longer disables a dateinput field. Thanks <a href="http://github.com/michaelhancock">michaelhancock</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/149">Issue 149</a>
destroy() method no longer fails if formEvent is set to null. Thanks <a href="http://github.com/miwolfram">miwolfram</a>.
</li>
<li>
the error message no longer blinks while fixing a value on an invalid field
</li>
</ul>

<h3>Dateinput</h3>

<ul>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/158">Issue 158</a>
the trigger element can no longer open calendar when the input is disabled. Thanks <a href="http://github.com/eugenebolshakov">eugenebolshakov</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/156">Issue 156</a>
year selector no longer advances one year when min is on december. Thanks <a href="http://github.com/rumyagent">rumyagent</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/151">Issue 151</a>
dateinput now positions itself correctly inside an absolutely/relatively positioned element. Thanks <a href="http://github.com/yunmanger">yunmanger</a>.
</li>
</ul>

<h3>Tooltip</h3>

<ul>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/162">Issue 162</a>
when using the same tooltip element with the "tip" configuration you can use the title- attribute as the tooltip. Thanks <a href="http://github.com/rleonhardt">rleonhardt</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/157">Issue 157</a>
tooltip element is no longer assigned multiple mouseover event listeners. Thanks <a href="http://github.com/ankostyuk">ankostyuk</a>.
</li>
</ul>

<h3>Tabs</h3>

<ul>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/165">Issue 165</a>
a single tab can (again) be opened with an URL anchor. Thanks <a href="http://github.com/Stiropor">Stiropor</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/169">Issue 169</a>
slideshow behaviour now similar to autoscroll. hitting play() won't proceed to next tab automatically. simplified code. Thanks <a href="http://github.com/HenrikBechmann">HenrikBechmann</a>.
</li>
</ul>

<h3>Rangeinput</h3>

<ul>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/170">Issue 170</a>
rangeinput now respects zero initial value. Thanks <a href="http://github.com/rumyagent">rumyagent</a>.
</li>
<li>
<a href="http://github.com/jquerytools/jquerytools/issues/177">Issue 177</a>
rangeinput now recalculates it's internal state every time sliding begins. makes it work better on different/unexpected scenarios. Thanks <a href="http://github.com/area51mafia">area51mafia</a>.
</li>
</ul>


<a name="1.2.4"></a>
<h2 class="first">Aug 17, 2010. Version 1.2.4</h2>
<h2>Aug 17, 2010. Version 1.2.4</h2>


<h3>Validator</h3>
Expand Down
2 changes: 1 addition & 1 deletion tooltip/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ <h2>Configuration</h2>
<td class="code">tip</td>
<td><code></code></td>
<td>
A jQuery selector for a single tooltip element. For example <samp>#mytip</samp>. This option is only valid if you want to manually define a single tooltip for multiple trigger elements simultaneously.
A jQuery selector for a single tooltip element. For example <samp>#mytip</samp>. This option is only valid if you want to manually define a single tooltip for multiple trigger elements simultaneously. Since 1.2.5 <samp>title</samp> attribute can still be used as the tooltip contents.
</td>
</tr>
<tr>
Expand Down

0 comments on commit cfd682c

Please sign in to comment.