"use strict"; /*globals define, app, ajaxify, socket, RELATIVE_PATH*/ define('forum/reset_code', function() { var ResetCode = {}; ResetCode.init = function() { var reset_code = ajaxify.data.code; var resetEl = $('#reset'), password = $('#password'), repeat = $('#repeat'), noticeEl = $('#notice'); resetEl.on('click', function() { if (password.val().length < config.minimumPasswordLength) { app.alertError('[[reset_password:password_too_short]]'); } else if (password.val() !== repeat.val()) { app.alertError('[[reset_password:passwords_do_not_match]]'); } else { resetEl.prop('disabled', true).html(' Changing Password'); socket.emit('user.reset.commit', { code: reset_code, password: password.val() }, function(err) { if (err) { ajaxify.refresh(); return app.alertError(err.message); } window.location.href = RELATIVE_PATH + '/login'; }); } return false; }); }; return ResetCode; });