nodebb-plugin-mentions-quest
Advanced tools
Comparing version 2.2.9 to 2.2.10
@@ -54,3 +54,3 @@ 'use strict'; | ||
// Retrieve settings | ||
Meta.settings.get('mentions', function (err, settings) { | ||
Meta.settings.get('mentions-quest', function (err, settings) { | ||
Object.assign(Mentions._settings, Mentions._defaults, settings); | ||
@@ -57,0 +57,0 @@ callback(); |
{ | ||
"name": "nodebb-plugin-mentions-quest", | ||
"version": "2.2.9", | ||
"version": "2.2.10", | ||
"description": "NodeBB Plugin that allows users to mention other users by prepending an '@' sign to their display name", | ||
@@ -5,0 +5,0 @@ "main": "library.js", |
'use strict'; | ||
/* globals $, app, socket */ | ||
define('admin/plugins/mentions', ['settings'], function (Settings) { | ||
define('admin/plugins/mentions-quest', ['settings'], function (Settings) { | ||
@@ -9,3 +9,3 @@ var ACP = {}; | ||
ACP.init = function () { | ||
Settings.load('mentions', $('.mentions-settings')); | ||
Settings.load('mentions-quest', $('.mentions-settings')); | ||
@@ -12,0 +12,0 @@ $(window).on('action:admin.settingsLoaded', applyDefaults); |
35605