UNPKG

nodebb-plugin-add-registration-fields

Version:

Add a field to user registration page to input additional profile data

10 lines (9 loc) 263 B
"use strict"; /*global utils, app*/ $(function() { $(window).on('action:ajaxify.end', function(e, data) { if (data.url === 'register' && utils.param('error') === 'not-filled') { app.alertError('Please complete all fields before registering.'); } }); });