[Pkg-javascript-commits] [dojo] 02/03: fixes #18314, typos in dojo/on inline examples
David Prévot
taffit at moszumanska.debian.org
Thu Jan 22 22:39:23 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag 1.8.10
in repository dojo.
commit 7199349272da65950ba301758a45e80fc650487a
Author: mello151 <woodgettm at gmail.com>
Date: Sun Jan 11 06:09:54 2015 -0700
fixes #18314, typos in dojo/on inline examples
(cherry picked from commit 1e0b71ddaf402d06dd916ce3e7009f3ab774b5dc)
---
on.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/on.js b/on.js
index 6781918..0e6ed79 100644
--- a/on.js
+++ b/on.js
@@ -50,7 +50,7 @@ define(["./has!dom-addeventlistener?:./aspect", "./_base/kernel", "./has"], func
// event.
// description:
// To listen for "click" events on a button node, we can do:
- // | define(["dojo/on"], function(listen){
+ // | define(["dojo/on"], function(on){
// | on(button, "click", clickHandler);
// | ...
// Evented JavaScript objects can also have their own events.
@@ -59,7 +59,7 @@ define(["./has!dom-addeventlistener?:./aspect", "./_base/kernel", "./has"], func
// And then we could publish a "foo" event:
// | on.emit(obj, "foo", {key: "value"});
// We can use extension events as well. For example, you could listen for a tap gesture:
- // | define(["dojo/on", "dojo/gesture/tap", function(listen, tap){
+ // | define(["dojo/on", "dojo/gesture/tap", function(on, tap){
// | on(button, tap, tapHandler);
// | ...
// which would trigger fooHandler. Note that for a simple object this is equivalent to calling:
@@ -196,7 +196,7 @@ define(["./has!dom-addeventlistener?:./aspect", "./_base/kernel", "./has"], func
// Indicates if children elements of the selector should be allowed. This defaults to
// true
// example:
- // | require(["dojo/on", "dojo/mouse", "dojo/query!css2"], function(listen, mouse){
+ // | require(["dojo/on", "dojo/mouse", "dojo/query!css2"], function(on, mouse){
// | on(node, on.selector(".my-class", mouse.enter), handlerForMyHover);
return function(target, listener){
// if the selector is function, use it to select the node, otherwise use the matches method
--
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