summaryrefslogtreecommitdiffstats
path: root/o3d/samples
diff options
context:
space:
mode:
authorericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-24 00:54:54 +0000
committerericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-24 00:54:54 +0000
commitfa2b5fc8a3910a8b56ae9d2e44b0bf0fcd1dfe29 (patch)
treece3368c39921e171b7a0b37e853b5a3ac7108e2b /o3d/samples
parentdf16b1717f06402fdcfac8cb991cb3687bf5a89b (diff)
downloadchromium_src-fa2b5fc8a3910a8b56ae9d2e44b0bf0fcd1dfe29.zip
chromium_src-fa2b5fc8a3910a8b56ae9d2e44b0bf0fcd1dfe29.tar.gz
chromium_src-fa2b5fc8a3910a8b56ae9d2e44b0bf0fcd1dfe29.tar.bz2
Review URL: http://codereview.chromium.org/147062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19087 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/samples')
-rw-r--r--o3d/samples/o3djs/event.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/o3d/samples/o3djs/event.js b/o3d/samples/o3djs/event.js
index 2497bc6..00898aa 100644
--- a/o3d/samples/o3djs/event.js
+++ b/o3d/samples/o3djs/event.js
@@ -299,8 +299,8 @@ o3djs.event.createEventHandler = function(listenerSet) {
* Convenience function to manage event listeners on the o3d plugin object,
* intended as a drop-in replacement for the DOM addEventListener [with slightly
* different arguments, but the same effect].
- * @param {!Element} pluginObject the <object> where the o3d plugin lives,
- * which the caller probably obtained by calling getElementById.
+ * @param {!Element} pluginObject the html object where the o3d plugin lives,
+ * which the caller probably obtained by calling getElementById or makeClients.
* @param {string} type the event type on which to trigger, e.g. 'mousedown',
* 'mousemove', etc.
* @param {!Object} handler either a function or an EventListener object.