[Pkg-javascript-commits] [dojo] 19/149: fixes #18287, change absolute MIDs to relative MIDs for dojo/on debounce/throttle extensions

David Prévot taffit at moszumanska.debian.org
Sat Feb 27 03:13:42 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository dojo.

commit b432a01ed17a455f618dc80dcb2c6a7a9a873740
Author: Dylan Schiemann <dylan at dojotoolkit.org>
Date:   Tue Sep 30 16:29:51 2014 -0700

    fixes #18287, change absolute MIDs to relative MIDs for dojo/on debounce/throttle extensions
---
 on/asyncEventListener.js | 2 +-
 on/debounce.js           | 2 +-
 on/throttle.js           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/on/asyncEventListener.js b/on/asyncEventListener.js
index 4778835..cf48efa 100644
--- a/on/asyncEventListener.js
+++ b/on/asyncEventListener.js
@@ -1,4 +1,4 @@
-define(['dojo/on', 'dojo/_base/window', 'dojo/dom-construct', 'dojo/domReady!'], function(on, baseWin, domConstruct){
+define(['../on', '../_base/window', '../dom-construct', '../domReady!'], function(on, baseWin, domConstruct){
 	// summary:
 	//		This sub module provide an event factory for delayed events (like debounce or throttle)
 	// module:
diff --git a/on/debounce.js b/on/debounce.js
index 968808c..ce6632b 100644
--- a/on/debounce.js
+++ b/on/debounce.js
@@ -1,4 +1,4 @@
-define(['dojo/debounce', 'dojo/on', 'dojo/on/asyncEventListener'], function(debounce, on, asyncEventListener){
+define(['../debounce', '../on', './asyncEventListener'], function(debounce, on, asyncEventListener){
 	// summary:
 	//		This module provides an event debouncer for dojo/on
 	// module:
diff --git a/on/throttle.js b/on/throttle.js
index 5daaa3a..7808b12 100644
--- a/on/throttle.js
+++ b/on/throttle.js
@@ -1,4 +1,4 @@
-define(['dojo/throttle', 'dojo/on'], function(throttle, on){
+define(['../throttle', '../on'], function(throttle, on){
 	// summary:
 	//		This module provides an event throttler for dojo/on
 	// module:

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/dojo.git



More information about the Pkg-javascript-commits mailing list