Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Pushed for CI: perf(ngBind): set textContent rather than using element.text() #9396

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions src/ng/directive/ngBind.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,9 @@ var ngBindDirective = ['$compile', function($compile) {
$compile.$$addBindingClass(templateElement);
return function ngBindLink(scope, element, attr) {
$compile.$$addBindingInfo(element, attr.ngBind);
element = element[0];
scope.$watch(attr.ngBind, function ngBindWatchAction(value) {
// We are purposefully using == here rather than === because we want to
// catch when value is "null or undefined"
// jshint -W041
element.text(value == undefined ? '' : value);
element.textContent = value === undefined ? '' : value;
});
};
}
Expand Down Expand Up @@ -128,8 +126,9 @@ var ngBindTemplateDirective = ['$interpolate', '$compile', function($interpolate
return function ngBindTemplateLink(scope, element, attr) {
var interpolateFn = $interpolate(element.attr(attr.$attr.ngBindTemplate));
$compile.$$addBindingInfo(element, interpolateFn.expressions);
element = element[0];
attr.$observe('ngBindTemplate', function(value) {
element.text(value);
element.textContent = value === undefined ? '' : value;
});
};
}
Expand Down