From f3e90f87b15d4808d217a889e6a7dad20fefc69b Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Mon, 9 Nov 2009 14:35:28 +0100 Subject: [PATCH] Fixed a typo that caused non-IE configurations to stop spriting images. Reviewed by me. --- Objective-J/CommonJS/lib/objective-j/jake/environment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/CommonJS/lib/objective-j/jake/environment.js b/Objective-J/CommonJS/lib/objective-j/jake/environment.js index 1aafd8a63..a0f6b5064 100644 --- a/Objective-J/CommonJS/lib/objective-j/jake/environment.js +++ b/Objective-J/CommonJS/lib/objective-j/jake/environment.js @@ -65,7 +65,7 @@ Environment.prototype.spritesImagesAsMHTML = function() Environment.prototype.setSpritesImagesAsDataURLs = function(/*Boolean*/ shouldSpriteImagesAsDataURLs) { - this._setSpritesImagesAsDataURLs = !!shouldSpriteImagesAsDataURLs; + this._spritesImagesAsDataURLs = !!shouldSpriteImagesAsDataURLs; } Environment.prototype.spritesImagesAsDataURLs = function()