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

Commit 1520d90

Browse files
committed
WIP: isDefined bug
1 parent c7df4a5 commit 1520d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ngSanitize/sanitize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function $SanitizeProvider() {
183183
* without a argument or self for chaining otherwise.
184184
*/
185185
this.enableSvg = function(enableSvg) {
186-
if (isDefined(enableSvg)) {
186+
if (angular.isDefined(enableSvg)) {
187187
svgEnabled = enableSvg;
188188
return this;
189189
} else {

0 commit comments

Comments
 (0)