famous-mediator
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "famous-mediator", | ||
"main": "index.js", | ||
"version": "0.1.0", | ||
"version": "0.2.1", | ||
"homepage": "https://github.com/markmarijnissen/famous-mediator", | ||
@@ -6,0 +6,0 @@ "authors": [ |
@@ -33,3 +33,3 @@ define(function(require, exports, module) { | ||
} | ||
// ready name is found | ||
@@ -40,4 +40,4 @@ if(name) { | ||
// Check callbacks that are waiting | ||
CallbackList.forEach(function(item,callbackIndex){ | ||
for(var callbackIndex = CallbackList.length-1; callbackIndex >= 0; callbackIndex--){ | ||
var item = CallbackList[callbackIndex]; | ||
// it this callback waiting for current module? | ||
@@ -59,3 +59,3 @@ var moduleIndex = item.waitFor.indexOf(name); | ||
} | ||
}); | ||
} | ||
} | ||
@@ -62,0 +62,0 @@ }); |
{ | ||
"name": "famous-mediator", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Utilities for a mediator design pattern in Famo.us", | ||
@@ -5,0 +5,0 @@ "main": "index.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
14542
7