Skip to content

Commit

Permalink
Merge pull request #5 from AdrianPiechota/master
Browse files Browse the repository at this point in the history
fixed #4
  • Loading branch information
Amphiluke authored Jun 13, 2016
2 parents e9a9431 + 6184ba1 commit dae9f21
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion floating-scroll.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "floating-scroll",
"title": "floatingScroll",
"version": "2.2.2",
"version": "2.2.3",
"description": "A lightweight jQuery plugin providing floating scrollbar functionality",
"keywords": [
"scrollbar",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "floating-scroll",
"version": "2.2.2",
"version": "2.2.3",
"description": "A lightweight jQuery plugin providing floating scrollbar functionality",
"main": "src/jquery.floatingscroll.js",
"style": "src/jquery.floatingscroll.css",
Expand Down
6 changes: 3 additions & 3 deletions src/jquery.floatingscroll.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery floatingScroll Plugin v2.2.2
* jQuery floatingScroll Plugin v2.2.3
* supported by jQuery v1.4.3+
*
* https://github.com/Amphiluke/floating-scroll
Expand All @@ -9,8 +9,8 @@
*/
(function (global, factory) {
"use strict";
if (typeof global.define === "function" && global.define.amd) {
global.define(["jquery"], factory);
if (typeof define === "function" && define.amd) {
define(["jquery"], factory);
} else if (typeof module === "object" && module.exports) {
factory(require("jquery"));
} else {
Expand Down
6 changes: 3 additions & 3 deletions src/jquery.floatingscroll.min.js

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

0 comments on commit dae9f21

Please sign in to comment.