You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the replaceRegion method (base.js:127), the $region.html() results returns an empty result. Using the unparsed given html in the return works for me.
// empties the region and pastes null$foundRegion.empty().append($region.html());// the unparsed html given from the server works fine, also the ajax bindings work fine$foundRegion.empty().append(html);
I'm not sure this is an issue or an jQuery version difference related problem. The jQuery version i'm currently using is 2.2.4
The text was updated successfully, but these errors were encountered:
I've had the same problem, but not an empty result, but that the first dom-node gets stripped away. I could imagine you get an empty result when your html only contains one node?
I opened a PR: #10
In the
replaceRegion
method (base.js:127), the $region.html() results returns an empty result. Using the unparsed given html in the return works for me.I'm not sure this is an issue or an jQuery version difference related problem. The jQuery version i'm currently using is 2.2.4
The text was updated successfully, but these errors were encountered: