Skip to content

Commit

Permalink
re #67 thanks Johnathan Brochu
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcher committed Sep 10, 2009
1 parent b3089b5 commit 6e44eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event/event.js
Expand Up @@ -16,7 +16,7 @@ var Event = function(options){
$cancelable = options.cancelable?options.cancelable:true,
$currentTarget = options.currentTarget?options.currentTarget:null,
$eventPhase = options.eventPhase?options.eventPhase:Event.CAPTURING_PHASE,
$target = options.eventPhase?options.eventPhase:document,
$target = options.target?options.target:document,
$timestamp = options.timestamp?options.timestamp:new Date().getTime().toString(),
$type = options.type?options.type:"";
return __extend__(this,{
Expand Down

0 comments on commit 6e44eda

Please sign in to comment.