From 9f2393f7bbcf18399c9df94f97bc009b2a93453f Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 25 Jun 2015 15:39:17 +0930 Subject: [PATCH] Add vendor prefix to initializer name --- extensions/mentions/js/bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/mentions/js/bootstrap.js b/extensions/mentions/js/bootstrap.js index 10f501e7d..369f5f42d 100644 --- a/extensions/mentions/js/bootstrap.js +++ b/extensions/mentions/js/bootstrap.js @@ -10,7 +10,7 @@ import composerAutocomplete from 'flarum-mentions/composer-autocomplete'; import PostMentionedNotification from 'flarum-mentions/components/post-mentioned-notification'; import UserMentionedNotification from 'flarum-mentions/components/user-mentioned-notification'; -app.initializers.add('mentions', function() { +app.initializers.add('flarum-mentions', function() { // For every mention of a post inside a post's content, set up a hover handler // that shows a preview of the mentioned post. postMentionPreviews();