Skip to content

Commit

Permalink
Provided support for jquery-ui 1.8 and jquery 1.4.2. No longer backwa…
Browse files Browse the repository at this point in the history
…rds compatible with jquery-ui 1.7.

Fixed a daylight savings bug.

Added ability to dynamically update calendar options
  • Loading branch information
robmonie committed Mar 3, 2010
1 parent 0b07ad9 commit 88f98e0
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 16 deletions.
23 changes: 18 additions & 5 deletions weekcalendar.html
Expand Up @@ -34,12 +34,25 @@
}

</style>
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css' />
<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='reset.css' />
<!--
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/start/jquery-ui.css' />
-->

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<link rel='stylesheet' type='text/css' href='libs/css/smoothness/jquery-ui-1.8rc3.custom.css' />


<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='demo.css' />


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<!--
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
-->

<script type='text/javascript' src='libs/jquery-ui-1.8rc3.custom.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<script type='text/javascript'>


Expand Down
23 changes: 18 additions & 5 deletions weekcalendar_demo_2.html
Expand Up @@ -46,12 +46,25 @@


</style>
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css' />
<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='reset.css' />
<!--
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/start/jquery-ui.css' />
-->

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<link rel='stylesheet' type='text/css' href='../libs/css/smoothness/jquery-ui-1.8rc3.custom.css' />


<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='demo.css' />


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<!--
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
-->

<script type='text/javascript' src='libs/jquery-ui-1.8rc3.custom.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<script type='text/javascript'>


Expand Down
25 changes: 19 additions & 6 deletions weekcalendar_json.html
Expand Up @@ -34,13 +34,26 @@
}

</style>
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css' />
<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='reset.css' />
<!--
<link rel='stylesheet' type='text/css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/start/jquery-ui.css' />
-->

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<script type='text/javascript'>
<link rel='stylesheet' type='text/css' href='libs/css/smoothness/jquery-ui-1.8rc3.custom.css' />


<link rel='stylesheet' type='text/css' href='jquery.weekcalendar.css' />
<link rel='stylesheet' type='text/css' href='demo.css' />


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<!--
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js'></script>
-->

<script type='text/javascript' src='libs/jquery-ui-1.8rc3.custom.min.js'></script>
<script type='text/javascript' src='jquery.weekcalendar.js'></script>
<script type='text/javascript'>


var year = new Date().getFullYear();
Expand Down

0 comments on commit 88f98e0

Please sign in to comment.