Skip to content

Commit

Permalink
Fix references to Bootstrap.js in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Jan 5, 2014
1 parent 6ed264a commit 1ee5b2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/item/Raster.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/paper.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/path/Curve.js
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down

0 comments on commit 1ee5b2c

Please sign in to comment.