Skip to content

Commit

Permalink
Merge pull request #44 from uzairfarooq/dev
Browse files Browse the repository at this point in the history
Release v2.3.1
  • Loading branch information
uzairfarooq committed Feb 28, 2016
2 parents 100bf99 + dbbc625 commit b8a5a4b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arrive",
"version": "2.3.0",
"version": "2.3.1",
"description": "Watch for DOM elements creation and removal.",
"main": "src/arrive.js",
"keywords": [
Expand Down
15 changes: 3 additions & 12 deletions minified/arrive.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": "arrive",
"version": "2.3.0",
"version": "2.3.1",
"description": "arrive.js provides events to watch for DOM elements creation and removal. It makes use of Mutation Observers internally.",
"main": "src/arrive.js",
"directories": {
Expand Down
8 changes: 4 additions & 4 deletions src/arrive.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
* arrive.js
* v2.3.0
* v2.3.1
* https://github.com/uzairfarooq/arrive
* MIT licensed
*
* Copyright (c) 2014-2015 Uzair Farooq
* Copyright (c) 2014-2016 Uzair Farooq
*/

var Arrive = (function(window, $, undefined) {
Expand Down Expand Up @@ -343,7 +343,7 @@ var Arrive = (function(window, $, undefined) {
return callback.call(existing[0].elem);
}

utils.callCallbacks(existing)
setTimeout(utils.callCallbacks, 1, existing);
}

mutationBindEvent.call(this, selector, options, callback);
Expand Down Expand Up @@ -447,4 +447,4 @@ var Arrive = (function(window, $, undefined) {

return Arrive;

})(this, typeof jQuery === 'undefined' ? null : jQuery, undefined);
})(window, typeof jQuery === 'undefined' ? null : jQuery, undefined);
2 changes: 1 addition & 1 deletion tests/SpecRunner.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Jasmine Spec Runner v2.0.0</title>

<link rel="shortcut icon" type="image/png" href="lib/jasmine-2.0.0/jasmine_favicon.png">
Expand Down

0 comments on commit b8a5a4b

Please sign in to comment.