Skip to content

Commit 4e52f7e

Browse files
committed
Release 1.5.4
1 parent 311c460 commit 4e52f7e

7 files changed

+15
-14
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-smooth-scroll",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"dependencies": {
55
"jquery": ">=1.3"
66
},

index.html

Lines changed: 6 additions & 5 deletions
Large diffs are not rendered by default.

jquery.smooth-scroll.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Smooth Scroll - v1.5.3 - 2014-10-15
2+
* jQuery Smooth Scroll - v1.5.4 - 2014-11-17
33
* https://github.com/kswedberg/jquery-smooth-scroll
44
* Copyright (c) 2014 Karl Swedberg
55
* Licensed MIT (https://github.com/kswedberg/jquery-smooth-scroll/blob/master/LICENSE-MIT)
@@ -15,7 +15,7 @@
1515
}
1616
}(function ($) {
1717

18-
var version = '1.5.3',
18+
var version = '1.5.4',
1919
optionOverrides = {},
2020
defaults = {
2121
exclude: [],
@@ -262,7 +262,7 @@
262262
$.fn.smoothScroll.defaults = defaults;
263263

264264
function escapeSelector (str) {
265-
return str.replace(/(:|\.)/g,'\\$1');
265+
return str.replace(/(:|\.|\/)/g,'\\$1');
266266
}
267267

268268
}));

jquery.smooth-scroll.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-smooth-scroll",
33
"title": "jQuery Smooth Scroll",
4-
"version": "1.5.3",
4+
"version": "1.5.4",
55
"scripts": {},
66
"main": "jquery.smooth-scroll.js",
77
"author": {

smooth-scroll.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smooth-scroll",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"title": "Smooth Scroll",
55
"description": "Easy implementation of smooth scrolling for same-page links",
66
"author": {

src/jquery.smooth-scroll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function($) {
2-
var version = '1.5.3',
2+
var version = '1.5.4',
33
optionOverrides = {},
44
defaults = {
55
exclude: [],

0 commit comments

Comments
 (0)