Skip to content

Commit

Permalink
release 0.1.2 - fixes location hash change on hours/minutes click
Browse files Browse the repository at this point in the history
  • Loading branch information
fgelinas committed Apr 12, 2011
1 parent b26bc87 commit 928fb69
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
14 changes: 9 additions & 5 deletions index.html
Expand Up @@ -3,13 +3,13 @@
<head>
<title>jQuery UI Time Picker by Francois Gelinas</title>
<link rel="stylesheet" href="ui-lightness/jquery-ui-1.8.7.custom.css" type="text/css" />
<link rel="stylesheet" href="jquery-ui-timepicker.css?v=0.1.1" type="text/css" />
<link rel="stylesheet" href="jquery-ui-timepicker.css?v=0.1.2" type="text/css" />



<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="jquery.ui.core.js"></script>
<script type="text/javascript" src="jquery.ui.timepicker.js?v=0.1.1"></script>
<script type="text/javascript" src="jquery.ui.timepicker.js?v=0.1.2"></script>
<style type="text/css">
/* some styling for the page */
body { font-size: 10px; /* for the widget natural size */}
Expand Down Expand Up @@ -405,7 +405,7 @@ <h2>Requirements : </h2>
</li>

<li>
<a href="jquery.ui.timepicker.js?v=0.1.1">
<a href="jquery.ui.timepicker.js?v=0.1.2">
jquery.ui.timepicker.js
</a>
</li>
Expand All @@ -419,12 +419,16 @@ <h2>Requirements : </h2>

</ul>

Get the release package here : <a href="releases/jquery-ui-timepicker-0.1.1.zip">jquery-ui-timepicker-0.1.1.zip</a>
Get the release package here : <a href="releases/jquery-ui-timepicker-0.1.2.zip">jquery-ui-timepicker-0.1.2.zip</a>

<hr />
<!-- =============================================================================================================== -->
<h2>Releases :</h2>
<dl>

<dt>0.1.2 - April 11, 2011</dt>
<dd>So in 0.1.1 I created a bug that made timepicker changes the location hash, well not i'ts fixed. (Thanks Lucas Falk) </dd>

<dt>0.1.1 - April 6, 2011</dt>
<dd>Changed the cells click and dblclick binding for faster rendering in IE6/7 (Thanks Blair Parsons)</dd>
<dd>Fixed a class naming bug created in 0.1.0 (Thanks Morlion Peter)</dd>
Expand All @@ -442,7 +446,7 @@ <h2>Releases :</h2>

<dt>0.0.7 - February 10, 2011</dt>
<dd>Added function to set time after initialisation :$('#timepicker').timepicker('setTime',newTime);</dd>
<dd>Added support for disabled period of time : onHourShow and onMinuteShow (thanks Rene Felgenträger)</dd>
<dd>Added support for disabled period of time : onHourShow and onMinuteShow (thanks Rene Felgentr�ger)</dd>

<dt>0.0.6 - January 19, 2011</dt>
<dd>Replaced some div with tables to : fix some display bugs in IE7, fix inline display and fix my headhake.</dd>
Expand Down
6 changes: 3 additions & 3 deletions jquery.ui.timepicker.js
@@ -1,5 +1,5 @@
/*
* jQuery UI Timepicker 0.1.1
* jQuery UI Timepicker 0.1.2
*
* Copyright 2010-2011, Francois Gelinas
* Dual licensed under the MIT or GPL Version 2 licenses.
Expand Down Expand Up @@ -40,7 +40,7 @@

(function ($, undefined) {

$.extend($.ui, { timepicker: { version: "0.1.1"} });
$.extend($.ui, { timepicker: { version: "0.1.2"} });

var PROP_NAME = 'timepicker';
var tpuuid = new Date().getTime();
Expand Down Expand Up @@ -952,7 +952,7 @@
$.timepicker = new Timepicker(); // singleton instance
$.timepicker.initialized = false;
$.timepicker.uuid = new Date().getTime();
$.timepicker.version = "0.1.1";
$.timepicker.version = "0.1.2";

// Workaround for #4055
// Add another global to avoid noConflict issues with inline event handlers
Expand Down
7 changes: 5 additions & 2 deletions releases.txt
Expand Up @@ -30,7 +30,7 @@ Added defaultTime value to use when input field is missing (inline) or input val

Release 0.0.7 - Fev 10, 2011
Added function to set time after initialisation :$('#timepicker').timepicker('setTime',newTime);
Added support for disabled period of time : onHourShow and onMinuteShow (thanks Rene Felgentr�ger)
Added support for disabled period of time : onHourShow and onMinuteShow (thanks Rene Felgentr�ger)

Release 0.0.8 - Fev 17, 2011
Fixed close event not triggered when switching to another input with time picker (thanks Stuart Gregg)
Expand All @@ -45,4 +45,7 @@ Fixed some bugs with release 0.0.9

0.1.1 - April 6, 2011
Changed the cells click and dblclick binding for faster rendering in IE6/7 (Thanks Blair Parsons)
Fixed a class naming bug created in 0.1.0 (Thanks Morlion Peter)
Fixed a class naming bug created in 0.1.0 (Thanks Morlion Peter)

0.1.2 - April 11, 2011
So in 0.1.1 I created a bug that made timepicker changes the location hash, well not i'ts fixed. (Thanks Lucas Falk)

0 comments on commit 928fb69

Please sign in to comment.