Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-smooth-scroll",
"version": "1.5.4",
"version": "1.5.5",
"dependencies": {
"jquery": ">=1.3"
},
Expand Down
9 changes: 6 additions & 3 deletions jquery.smooth-scroll.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
/*!
* jQuery Smooth Scroll - v1.5.4 - 2014-11-17
* jQuery Smooth Scroll - v1.5.5 - 2015-02-19
* https://github.com/kswedberg/jquery-smooth-scroll
* Copyright (c) 2014 Karl Swedberg
* Copyright (c) 2015 Karl Swedberg
* Licensed MIT (https://github.com/kswedberg/jquery-smooth-scroll/blob/master/LICENSE-MIT)
*/

(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS
factory(require('jquery'));
} else {
// Browser globals
factory(jQuery);
}
}(function ($) {

var version = '1.5.4',
var version = '1.5.5',
optionOverrides = {},
defaults = {
exclude: [],
Expand Down
6 changes: 3 additions & 3 deletions jquery.smooth-scroll.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions lib/tmpl/umdhead.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS
factory(require('jquery'));
} else {
// Browser globals
factory(jQuery);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery-smooth-scroll",
"title": "jQuery Smooth Scroll",
"version": "1.5.4",
"version": "1.5.5",
"scripts": {},
"main": "jquery.smooth-scroll.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion smooth-scroll.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smooth-scroll",
"version": "1.5.4",
"version": "1.5.5",
"title": "Smooth Scroll",
"description": "Easy implementation of smooth scrolling for same-page links",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.smooth-scroll.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(function($) {
var version = '1.5.4',
var version = '1.5.5',
optionOverrides = {},
defaults = {
exclude: [],
Expand Down