[Pkg-javascript-commits] [dojo] 03/20: fixes #18287, change absolute MIDs to relative MIDs for dojo/on debounce/throttle extensions
David Prévot
taffit at moszumanska.debian.org
Mon Oct 20 17:39:37 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository dojo.
commit 0155337f0b6ed3a4b709a2cf655de99db7cf52fa
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
(cherry picked from commit b432a01ed17a455f618dc80dcb2c6a7a9a873740)
---
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