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

Commit 43ebe65

Browse files
committed
feat(ngHref): bind href attribute to ng-href attribute in case SVG element
1 parent 7f1b8bd commit 43ebe65

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

src/ng/directive/attrs.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,15 @@ forEach(ALIASED_ATTR, function(htmlAttr, ngAttr) {
399399
};
400400
});
401401

402+
403+
// Helper
404+
var updateAttribute = function(attr, name, value) {
405+
attr.$set(name, value);
406+
407+
if (name === 'xlinkHref') {
408+
attr.$set('href', value);
409+
}
410+
};
402411
// ng-src, ng-srcset, ng-href are interpolated
403412
forEach(['src', 'srcset', 'href'], function(attrName) {
404413
var normalized = directiveNormalize('ng-' + attrName);
@@ -419,12 +428,12 @@ forEach(['src', 'srcset', 'href'], function(attrName) {
419428
attr.$observe(normalized, function(value) {
420429
if (!value) {
421430
if (attrName === 'href') {
422-
attr.$set(name, null);
431+
updateAttribute(attr, name, null);
423432
}
424433
return;
425434
}
426435

427-
attr.$set(name, value);
436+
updateAttribute(attr, name, value);
428437

429438
// Support: IE 9-11 only
430439
// On IE, if "ng:src" directive declaration is used and "src" attribute doesn't exist

test/ng/directive/booleanAttrsSpec.js

+21-2
Original file line numberDiff line numberDiff line change
@@ -299,25 +299,44 @@ describe('ngHref', function() {
299299

300300
if (isDefined(window.SVGElement)) {
301301
describe('SVGAElement', function() {
302-
it('should interpolate the expression and bind to xlink:href', inject(function($compile, $rootScope) {
302+
it('should interpolate the expression and bind to xlink:href and href', inject(function($compile, $rootScope) {
303303
element = $compile('<svg><a ng-href="some/{{id}}"></a></svg>')($rootScope);
304304
var child = element.children('a');
305305
$rootScope.$digest();
306306
expect(child.attr('xlink:href')).toEqual('some/');
307+
expect(child.attr('href')).toEqual('some/');
307308

308309
$rootScope.$apply(function() {
309310
$rootScope.id = 1;
310311
});
311312
expect(child.attr('xlink:href')).toEqual('some/1');
313+
expect(child.attr('href')).toEqual('some/1');
312314
}));
313315

314316

315-
it('should bind xlink:href even if no interpolation', inject(function($rootScope, $compile) {
317+
it('should bind xlink:href and href even if no interpolation', inject(function($rootScope, $compile) {
316318
element = $compile('<svg><a ng-href="http://server"></a></svg>')($rootScope);
317319
var child = element.children('a');
318320
$rootScope.$digest();
319321
expect(child.attr('xlink:href')).toEqual('http://server');
322+
expect(child.attr('href')).toEqual('http://server');
320323
}));
324+
325+
they('should set xlink:href and href to null when ng-href value is $prop', ['', 0, null, false, undefined],
326+
function (value) {
327+
var $compile, $rootScope;
328+
inject(function(_$compile_, _$rootScope_){
329+
$compile = _$compile_;
330+
$rootScope = _$rootScope_;
331+
});
332+
333+
$rootScope.url = value;
334+
element = $compile('<svg><a ng-href="{{url}}"></a></svg>')($rootScope);
335+
var child = element.children('a');
336+
expect(child.attr('xlink:href')).toBeNull();
337+
expect(child.attr('href')).toEqual('some/');
338+
}
339+
);
321340
});
322341
}
323342
});

0 commit comments

Comments
 (0)