fixed comma

This commit is contained in:
Eric Rowell
2013-11-27 21:34:06 -08:00
parent aa78d632db
commit 96a9bd2248

View File

@@ -42,10 +42,10 @@
UNDERSCORE = '_', UNDERSCORE = '_',
CONTAINER = 'container', CONTAINER = 'container',
EMPTY_STRING = '', EMPTY_STRING = '',
EVENTS = [MOUSEDOWN, MOUSEMOVE, MOUSEUP, MOUSEOUT, TOUCHSTART, TOUCHMOVE, TOUCHEND, MOUSEOVER]; EVENTS = [MOUSEDOWN, MOUSEMOVE, MOUSEUP, MOUSEOUT, TOUCHSTART, TOUCHMOVE, TOUCHEND, MOUSEOVER],
// cached variables // cached variables
eventsLength = EVENTS.length; eventsLength = EVENTS.length;
function addEvent(ctx, eventName) { function addEvent(ctx, eventName) {
ctx.content.addEventListener(eventName, function(evt) { ctx.content.addEventListener(eventName, function(evt) {