mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
fix(jqLite): better support for xhtml
it turns out that some stuff doesn't work in xhtml as it does in html. for example can't be innerHTML-ed and auto-closing of elements doesn't work. the reporter of the referenced issue claimed that innerHTML vs text on script made a difference but that doesn't appear to be true in my testing. I'm not including test for this because testacular doesn't currently run tests in xhtml yet. Closes #1301
This commit is contained in:
parent
8693eac417
commit
d3fa7a2e9e
2 changed files with 2 additions and 2 deletions
|
|
@ -165,7 +165,7 @@ function JQLite(element) {
|
|||
var div = document.createElement('div');
|
||||
// Read about the NoScope elements here:
|
||||
// http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx
|
||||
div.innerHTML = '<div> </div>' + element; // IE insanity to make NoScope elements work!
|
||||
div.innerHTML = '<div> </div>' + element; // IE insanity to make NoScope elements work!
|
||||
div.removeChild(div.firstChild); // remove the superfluous div
|
||||
JQLiteAddNodes(this, div.childNodes);
|
||||
this.remove(); // detach the elements from the temporary DOM div.
|
||||
|
|
|
|||
|
|
@ -319,7 +319,7 @@ function $CompileProvider($provide) {
|
|||
// not be able to attach scope data to them, so we will wrap them in <span>
|
||||
forEach($compileNode, function(node, index){
|
||||
if (node.nodeType == 3 /* text node */) {
|
||||
$compileNode[index] = jqLite(node).wrap('<span>').parent()[0];
|
||||
$compileNode[index] = jqLite(node).wrap('<span></span>').parent()[0];
|
||||
}
|
||||
});
|
||||
var compositeLinkFn = compileNodes($compileNode, transcludeFn, $compileNode, maxPriority);
|
||||
|
|
|
|||
Loading…
Reference in a new issue