reorg of project assets

This commit is contained in:
Brian LeRoux
2010-01-26 13:54:02 -08:00
parent fc6f2f5d39
commit e3dc010b97
33 changed files with 360 additions and 377 deletions
+22
View File
@@ -0,0 +1,22 @@
function KeyEvent()
{
}
KeyEvent.prototype.menuTrigger = function()
{
var e = document.createEvent('Events');
e.initEvent('menuKeyDown');
document.dispatchEvent(e);
}
KeyEvent.prototype.searchTrigger= function()
{
var e = document.createEvent('Events');
e.initEvent('searchKeyDown');
document.dispatchEvent(e);
}
if (document.keyEvent == null || typeof document.keyEvent == 'undefined')
{
window.keyEvent = document.keyEvent = new KeyEvent();
}