FIX: waits libs (highlightjs) to process post before acting

This commit is contained in:
Joffrey JAFFEUX 2019-05-30 10:18:49 +02:00 committed by GitHub
parent 41408e51fa
commit b2400e1255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 15 deletions

View File

@ -202,6 +202,7 @@
}, 250)
);
Ember.run.later(() => {
// trigger fake event to setup initial state
Object.keys(placeholders).forEach(placeholderKey => {
const placeholder = placeholders[placeholderKey];
@ -218,5 +219,6 @@
mappings
);
});
}, 500);
});
</script>