We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725aedb commit 91c4f97Copy full SHA for 91c4f97
1 file changed
vendor/experimental-render-mode-rehydrate.js
@@ -2,7 +2,11 @@
2
if (typeof FastBoot === 'undefined') {
3
var current = document.getElementById('fastboot-body-start');
4
5
- if (current && Ember.ViewUtils.isSerializationFirstNode(current.nextSibling)) {
+ if (
6
+ current &&
7
+ typeof Ember.ViewUtils.isSerializationFirstNode === 'function' &&
8
+ Ember.ViewUtils.isSerializationFirstNode(current.nextSibling)
9
+ ) {
10
Ember.ApplicationInstance.reopen({
11
_bootSync: function(options) {
12
if (options === undefined) {
0 commit comments