Comparing version 0.5.1 to 0.5.2
@@ -5,3 +5,3 @@ { | ||
"description": "Custom Events", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"keywords": ["events"], | ||
@@ -8,0 +8,0 @@ "dependencies": {}, |
17
eve.js
@@ -1,9 +0,9 @@ | ||
// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved. | ||
// | ||
// Copyright (c) 2017 Adobe Systems Incorporated. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
@@ -15,3 +15,3 @@ // distributed under the License is distributed on an "AS IS" BASIS, | ||
// ┌────────────────────────────────────────────────────────────┐ \\ | ||
// │ Eve 0.5.0 - JavaScript Events Library │ \\ | ||
// │ Eve 0.5.2 - JavaScript Events Library │ \\ | ||
// ├────────────────────────────────────────────────────────────┤ \\ | ||
@@ -22,3 +22,3 @@ // │ Author Dmitry Baranovskiy (http://dmitry.baranovskiy.com/) │ \\ | ||
(function (glob) { | ||
var version = "0.5.0", | ||
var version = "0.5.2", | ||
has = "hasOwnProperty", | ||
@@ -210,3 +210,3 @@ separator = /[\.\/]/, | ||
** | ||
= (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment. | ||
= (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment. | ||
> Example: | ||
@@ -451,3 +451,4 @@ | eve.on("mouse", eatIt)(2); | ||
}; | ||
glob.eve = eve; | ||
(typeof module != "undefined" && module.exports) ? (module.exports = eve) : (typeof define === "function" && define.amd ? (define("eve", [], function() { return eve; })) : (glob.eve = eve)); | ||
})(this); | ||
})(window || this); |
@@ -10,3 +10,3 @@ { | ||
"description" : "Simple custom events", | ||
"version" : "0.5.1", | ||
"version" : "0.5.2", | ||
@@ -13,0 +13,0 @@ "main" : "./eve.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29546
452