Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
AUI-1130 - Source formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Mak committed Jul 1, 2014
1 parent 345575c commit 8a5c6f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/aui-form-builder/js/aui-form-builder-field-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ var L = A.Lang,
isObject = L.isObject,

AArray = A.Array,
AEscape = A.Escape,

ACCEPT_CHILDREN = 'acceptChildren',
ALERT = 'alert',
Expand Down Expand Up @@ -473,8 +474,8 @@ var FormBuilderField = A.Component.create({
return A.Node.create(
L.sub(
TPL_LABEL, {
id: A.Escape.html(instance.get(ID)),
label: A.Escape.html(instance.get(LABEL))
id: AEscape.html(instance.get(ID)),
label: AEscape.html(instance.get(LABEL))
}
)
);
Expand Down Expand Up @@ -1016,7 +1017,7 @@ var FormBuilderField = A.Component.create({
var instance = this,
labelNode = instance.get(LABEL_NODE);

labelNode.setContent(A.Escape.html(val));
labelNode.setContent(AEscape.html(val));
},

/**
Expand Down

0 comments on commit 8a5c6f3

Please sign in to comment.