Skip to content

Commit

Permalink
Merge pull request #20 from jonataswalker/v1.0.0
Browse files Browse the repository at this point in the history
Release v1.0.0
  • Loading branch information
jonataswalker authored Nov 27, 2017
2 parents c2addc5 + 3be3d87 commit c1a24de
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
18 changes: 15 additions & 3 deletions dist/scroll-watcher.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* scroll-watcher - v0.6.0
* scroll-watcher - v1.0.0
* A lightweight, blazing fast, rAF based, scroll watcher.
* https://github.com/jonataswalker/scroll-watcher
* Built: Mon Nov 27 2017 06:54:13 GMT-0200 (-02)
* Built: Mon Nov 27 2017 15:29:04 GMT-0200 (-02)
*/

(function (global, factory) {
Expand Down Expand Up @@ -99,6 +99,14 @@ function assert(condition, message) {
}
}

/**
* @param {Element|Array<Element>} element DOM node or array of nodes.
* @param {String|Array<String>} classname Class or array of classes.
* For example: 'class1 class2' or ['class1', 'class2']
* @param {Number|undefined} timeout Timeout to remove a class.
*/


/**
* @param {Element|Array<Element>} element DOM node or array of nodes.
* @param {String|Array<String>} classname Class or array of classes.
Expand Down Expand Up @@ -302,7 +310,7 @@ var performanceNow = createCommonjsModule(function (module) {

}).call(commonjsGlobal);

//# sourceMappingURL=performance-now.js.map

});

var root = typeof window === 'undefined' ? commonjsGlobal : window;
Expand Down Expand Up @@ -567,6 +575,10 @@ function getProps(item) {
};
}

/**
* Principal class. Will be passed as argument to others.
* @class Base
*/
var Base = (function (TinyEmitter$$1) {
function Base() {
if (!(this instanceof Base)) { return new Base(); }
Expand Down
6 changes: 3 additions & 3 deletions dist/scroll-watcher.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scroll-watcher",
"version": "0.6.0",
"version": "1.0.0",
"description": "A lightweight, blazing fast, rAF based, scroll watcher.",
"author": "Jonatas Walker",
"homepage": "https://github.com/jonataswalker/scroll-watcher",
Expand Down

0 comments on commit c1a24de

Please sign in to comment.