Skip to content

Commit f090e83

Browse files
committed
Releasing Tocify v1.9.0
1 parent 373d295 commit f090e83

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

Diff for: README.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ If you find that you need a feature that Tocify does not currently support, eith
5454

5555
##Change Log
5656

57+
`1.9.0` - October 1, 2013
58+
59+
- Fixed hash/history bug that threw a JavaScript error when the hash did not match an element on the page
60+
- Fixed bug that affected TOC items which contained special characters [#45](https://github.com/gfranko/jquery.tocify.js/issues/45)
61+
- Only register scroll event handlers if necessary [#44](https://github.com/gfranko/jquery.tocify.js/issues/44)
62+
- Improved the **scrollHistory** option [#42](https://github.com/gfranko/jquery.tocify.js/issues/42)
63+
5764
`1.8.0` - September 16, 2013
5865

5966
- Added the **scrollHistory** option [#41](https://github.com/gfranko/jquery.tocify.js/issues/41)

Diff for: demos/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!-- Le styles -->
1212
<link href="styles/bootstrap.css" rel="stylesheet">
1313
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/black-tie/jquery-ui.css" rel="stylesheet">
14-
<link href="../src/stylesheets/Tocify/jquery.tocify.css" rel="stylesheet">
14+
<link href="../src/stylesheets/jquery.tocify.css" rel="stylesheet">
1515
<link href="styles/prettify.css" type="text/css" rel="stylesheet" />
1616

1717
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jquery.tocify",
33
"title": "jquery Tocify",
44
"description": "A jQuery plugin that creates a dynamic table of contents",
5-
"version": "1.8.0",
5+
"version": "1.9.0",
66
"homepage": "http://gregfranko.com/jquery.tocify.js/",
77
"author": {
88
"name": "Greg Franko",

Diff for: src/javascripts/jquery.tocify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* jquery Tocify - v1.8.0 - 2013-09-16
1+
/* jquery Tocify - v1.9.0 - 2013-10-01
22
* http://www.gregfranko.com/jquery.tocify.js/
33
* Copyright (c) 2013 Greg Franko; Licensed MIT */
44

@@ -38,7 +38,7 @@
3838
$.widget("toc.tocify", {
3939

4040
//Plugin version
41-
version: "1.8.0",
41+
version: "1.9.0",
4242

4343
// These options will be used as defaults
4444
options: {

Diff for: src/stylesheets/Tocify/jquery.tocify.css renamed to src/stylesheets/jquery.tocify.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jquery.tocify.css 1.8.0
2+
* jquery.tocify.css 1.9.0
33
* Author: @gregfranko
44
*/
55

0 commit comments

Comments
 (0)