Skip to content

Commit

Permalink
Removed some whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt committed Apr 11, 2011
1 parent 6d05c8b commit 1d8fe13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gesticulate/geometry/point.js
Expand Up @@ -62,4 +62,4 @@ Gesticulate.Geometry.Point = Gesticulate.Geometry.Vector = function (x, y) {
this.toString = function() {
return ['(', this.x, ', ', this.y, ')'].join('');
};
};
};
2 changes: 1 addition & 1 deletion src/gesticulate/geometry/polyline.js
Expand Up @@ -6,7 +6,7 @@
* new Gesticulate.Geometry.Polyline(x1, y1 [, {...}])
* - points (Array): An array of Gesticulate.Geometry.Points
* - xn (number): At least one x coordinate
* - xn (number): At least one y coordinate
* - xn (number): At least one y coordinate
**/
Gesticulate.Geometry.Polyline = function () {
this.points = [];
Expand Down
2 changes: 1 addition & 1 deletion src/gesticulate/recognizer/stroke.js
Expand Up @@ -68,4 +68,4 @@ Gesticulate.Recognizer.Stroke = function (_template, _threshold, _options) {
};
};

Gesticulate.Recognizer.Stroke.prototype = new Gesticulate.Recognizer.Base();
Gesticulate.Recognizer.Stroke.prototype = new Gesticulate.Recognizer.Base();
2 changes: 1 addition & 1 deletion src/gesticulate/touch_mapper.js
Expand Up @@ -55,7 +55,7 @@ Gesticulate.TouchMapper = function(recognizers, mode) {
/**
* Gesticulate.TouchMapper#recognizerFor(touch) -> Gesticulate.Recognizer.Base | ...
* Returns the mapped recognizer for the given touch. As long as the
* mapper isn't satisfied or there is no recognizer for this touch
* mapper isn't satisfied or there is no recognizer for this touch
* it returns Gesticulate.Recognizer.Base as a null recognizer (which always fails).
**/
this.recognizerFor = function(touch) {
Expand Down

0 comments on commit 1d8fe13

Please sign in to comment.