diff --git a/src/eventhandler.js b/src/eventhandler.js index 785d7ec2..a8d38dcc 100644 --- a/src/eventhandler.js +++ b/src/eventhandler.js @@ -131,7 +131,7 @@ $.EventHandler.prototype = { * @param {Function} handler - Function to call when event is triggered. */ raiseEvent: function( eventName, eventArgs ) { - //uncomment if you want to get a log og all events + //uncomment if you want to get a log of all events //$.console.log( eventName ); var handler = this.getHandler( eventName ); diff --git a/src/viewport.js b/src/viewport.js index 954ebab3..7b100283 100644 --- a/src/viewport.js +++ b/src/viewport.js @@ -53,7 +53,7 @@ $.Viewport = function( options ) { //options.config and the general config argument are deprecated //in favor of the more direct specification of optional settings - //being pass directly on the options object + //being passed directly on the options object if ( options.config ){ $.extend( true, options, options.config ); delete options.config;