Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Unified Diff: samples/o3djs/event.js

Issue 218002: Fixing bug #152 (pressing "T" doens't leave a trail in the particle samples o... Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | samples/particles.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3djs/event.js
===================================================================
--- samples/o3djs/event.js (revision 26870)
+++ samples/o3djs/event.js (working copy)
@@ -132,7 +132,7 @@
* @return {number} the numeric Unicode code point represented.
*/
o3djs.event.keyIdentifierToChar = function(keyIdent) {
- if (keyIdent) {
+ if (keyIdent && typeof(keyIdent) == 'string') {
switch (keyIdent) {
case 'Enter': return 13;
case 'Left': return 37;
@@ -140,8 +140,8 @@
case 'Up': return 38;
case 'Down': return 40;
}
- if (keyIdent.indexOf('U+') == 0)
- return parseInt(keyIdent.substr(2).toUpperCase(), 16);
+ if (keyIdent.indexOf('U+') == 0)
+ return parseInt(keyIdent.substr(2).toUpperCase(), 16);
}
return 0;
};
@@ -157,7 +157,7 @@
event = window.event;
}
var charCode = 0;
- if (event.keyIdentifier)
+ if (event.keyIdentifier)
charCode = o3djs.event.keyIdentifierToChar(event.keyIdentifier);
if (!charCode)
charCode = (window.event) ? window.event.keyCode : event.charCode;
« no previous file with comments | « no previous file | samples/particles.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698