aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-05-28 17:10:02 -0700
committerJose Antonio Marquez2012-05-28 17:10:02 -0700
commit32166f2753f24ff84b33a5ec925437577d53f197 (patch)
tree612f89237836d349268df15eee3f0973c994daca
parent6ca89e7233614b93c49a4feadb8a0a82e5800b8f (diff)
parent9a66ccad0235484643ef6d821315b11b5be4a93e (diff)
downloadninja-32166f2753f24ff84b33a5ec925437577d53f197.tar.gz
Merge branch 'refs/heads/Ninja-DOM-Architecture' into Document
-rwxr-xr-xjs/panels/properties.reel/properties.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/properties.reel/properties.js b/js/panels/properties.reel/properties.js
index e3ecce10..84b0d589 100755
--- a/js/panels/properties.reel/properties.js
+++ b/js/panels/properties.reel/properties.js
@@ -89,7 +89,7 @@ exports.Properties = Montage.create(Component, {
89 handleBlur: { 89 handleBlur: {
90 value: function(event) { 90 value: function(event) {
91 91
92 if(event.target.id === "elementId") { 92 if(event.target === this.elementId.element) {
93 93
94 // Remove all white spaces from the id 94 // Remove all white spaces from the id
95 this.elementId.value = this.elementId.value.replace(/\s/g, ''); 95 this.elementId.value = this.elementId.value.replace(/\s/g, '');
@@ -106,7 +106,7 @@ exports.Properties = Montage.create(Component, {
106 } else { 106 } else {
107 ElementsMediator.setAttribute(this.application.ninja.currentDocument.model.documentRoot, "id", this.elementId.value, "Change", "pi", this.application.ninja.currentDocument.model.documentRoot.elementModel.id); 107 ElementsMediator.setAttribute(this.application.ninja.currentDocument.model.documentRoot, "id", this.elementId.value, "Change", "pi", this.application.ninja.currentDocument.model.documentRoot.elementModel.id);
108 } 108 }
109 } else if(event.target.id === "elementClass") { 109 } else if(event.target === this.elementClass.element) {
110 if(this.application.ninja.selectedElements.length) { 110 if(this.application.ninja.selectedElements.length) {
111 ElementsMediator.setAttribute(this.application.ninja.selectedElements[0], "class", this.elementClass.value, this.application.ninja.selectedElements[0].className, "pi"); 111 ElementsMediator.setAttribute(this.application.ninja.selectedElements[0], "class", this.elementClass.value, this.application.ninja.selectedElements[0].className, "pi");
112 } else { 112 } else {