From 706cc10e24177e9b9fae87862aa8bd4d4fad310b Mon Sep 17 00:00:00 2001 From: Alexander Harding Date: Tue, 1 Apr 2014 14:45:44 -0500 Subject: [PATCH] If the first element in a template is an tag, the compiler will wrap it with a , respectively. + * + * @param {string} template The template to check + * @returns {JqLite} The wrapped template + */ function directiveTemplateContents(template) { var type; template = trim(template); @@ -1672,6 +1679,12 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return table.children('tr'); } return table.children('tr').contents(); + } else if ((type = SELECT_CONTENT_REGEXP.exec(template))) { + type = type[1].toLowerCase(); + var select = jqLite(''); + if (/(option|optgroup)/.test(type)) { + return select.children(type); + } } return jqLite('
' + template + diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 96d3c18bc7ee..f443ef963ca4 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -541,6 +541,14 @@ describe('$compile', function() { replace: true, template: 'TD' })); + directive('replaceWithOption', valueFn({ + replace: true, + template: '' + })); + directive('replaceWithOptgroup', valueFn({ + replace: true, + template: 'OPTGROUP' + })); })); @@ -746,6 +754,20 @@ describe('$compile', function() { }).not.toThrow(); expect(nodeName_(element)).toMatch(/tfoot/i); })); + + it('should support templates with root tags', inject(function($compile, $rootScope) { + expect(function() { + element = $compile('
')($rootScope); + }).not.toThrow(); + expect(nodeName_(element)).toMatch(/optgroup/i); + })); }); @@ -867,6 +889,14 @@ describe('$compile', function() { replace: true, templateUrl: 'tfoot.html' })); + directive('replaceWithOption', valueFn({ + replace: true, + templateUrl: 'option.html' + })); + directive('replaceWithOptgroup', valueFn({ + replace: true, + templateUrl: 'optgroup.html' + })); } )); @@ -1556,6 +1586,24 @@ describe('$compile', function() { $rootScope.$digest(); expect(nodeName_(element)).toMatch(/tfoot/i); })); + + it('should support templates with root '); + expect(function() { + element = $compile('
')($rootScope); + }).not.toThrow(); + $rootScope.$digest(); + expect(nodeName_(element)).toMatch(/option/i); + })); + + it('should support templates with root tags', inject(function($compile, $rootScope, $templateCache) { + $templateCache.put('optgroup.html', 'OPTGROUP'); + expect(function() { + element = $compile('
')($rootScope); + }).not.toThrow(); + $rootScope.$digest(); + expect(nodeName_(element)).toMatch(/optgroup/i); + })); });