Skip to content

Instantly share code, notes, and snippets.

@bulkan
Created May 2, 2013 06:59
Show Gist options
  • Save bulkan/5500582 to your computer and use it in GitHub Desktop.
Save bulkan/5500582 to your computer and use it in GitHub Desktop.
goog.provide('events_tutorial.Events');
goog.require('goog.events.Event');
goog.require('goog.events.EventTarget');
events_tutorial.Events = new goog.events.EventTarget();
events_tutorial.Events.ChangeColorEvent = function() {
goog.events.Event.call(this, 'CHANGECOLOR');
};
goog.inherits(events_tutorial.Events.ChangeColorEvent, goog.events.Event);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment