aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Guzman2012-06-29 09:14:30 -0700
committerEric Guzman2012-06-29 09:14:30 -0700
commit72a236ce7af6711f9d30762c2409d0ebd5ecf7aa (patch)
treea47a074b8ae5640664a9134607e22598a853dcc1
parent6823abb8024060eee6a4f8eaace288ed9dd58e65 (diff)
downloadninja-72a236ce7af6711f9d30762c2409d0ebd5ecf7aa.tar.gz
Styles Controller - removing console logs
-rwxr-xr-xjs/controllers/styles-controller.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/controllers/styles-controller.js b/js/controllers/styles-controller.js
index 47c63c09..e25ed20c 100755
--- a/js/controllers/styles-controller.js
+++ b/js/controllers/styles-controller.js
@@ -1555,7 +1555,6 @@ var stylesController = exports.StylesController = Montage.create(Component, {
1555 value: function(el, property, rule) { 1555 value: function(el, property, rule) {
1556 if(!el.elementModel) { return false; } /// return null if there is no element model 1556 if(!el.elementModel) { return false; } /// return null if there is no element model
1557 1557
1558 console.log("Setting cache for property: ", property);
1559 this._cacheHistory.push({ 1558 this._cacheHistory.push({
1560 rule: rule, 1559 rule: rule,
1561 element: el, 1560 element: el,
@@ -1618,7 +1617,6 @@ var stylesController = exports.StylesController = Montage.create(Component, {
1618 if(!element) { 1617 if(!element) {
1619 this._cacheHistory = null; 1618 this._cacheHistory = null;
1620 this._cacheHistory = []; 1619 this._cacheHistory = [];
1621 console.log("Removing cache: ", this._cacheHistory);
1622 } 1620 }
1623 1621
1624 } 1622 }