diff --git a/src/item/Raster.js b/src/item/Raster.js index 88fa275d..d402315e 100644 --- a/src/item/Raster.js +++ b/src/item/Raster.js @@ -616,7 +616,7 @@ var Raster = Item.extend(/** @lends Raster# */{ var that = this; return new HitResult('pixel', that, { offset: point.add(that._size.divide(2)).round(), - // Inject as Bootstrap accessor, so #toString renders well too + // Inject as Straps.js accessor, so #toString renders well too color: { get: function() { return that.getPixel(this.offset); diff --git a/src/paper.js b/src/paper.js index fe82b5d8..49b7d26d 100644 --- a/src/paper.js +++ b/src/paper.js @@ -33,7 +33,7 @@ // Allow the minification of the undefined variable by defining it as a local // parameter inside the paper scope. var paper = new function(undefined) { -// Inline Bootstrap core (the Base class) inside the paper scope first: +// Inline Straps.js core (the Base class) inside the paper scope first: /*#*/ include('../bower_components/straps/straps.js', { exports: false }); /*#*/ if (__options.stats) { diff --git a/src/path/Curve.js b/src/path/Curve.js index abccbddb..4d677133 100644 --- a/src/path/Curve.js +++ b/src/path/Curve.js @@ -268,7 +268,7 @@ var Curve = Base.extend(/** @lends Curve# */{ * @type Number * @bean */ - // Hide parameters from Bootstrap so it injects bean too + // Hide parameters from Straps.js so it injects bean too getLength: function(/* from, to */) { var from = arguments[0], to = arguments[1],