szurubooru/client/js
rr- 023ec9a976 client/password-reset: fix event binding
Every time the password reset form was loaded, the form submit event
listener was attached to a non-disposable DOM node rather than the DOM
node whose life scope was bound to the viewed page. As such, submitting
the form, leaving the page, returning back to it and sending the request
again caused the 'submit' event to fire twice - one time from the
non-disposed event handler and one from the current handler. This
resulted in the request being sent twice, and getting two confirmation
messages on the screen.

Fortunately, since the password reset requests are GET requests, they're
intercepted by the internal cache of the client API facade, so the
client just saw duplicate messages without the requests being actually
sent to the backend - meaning no extra mails were sent.
2016-08-14 16:57:46 +02:00
..
controllers client/posts: fix mass tag not sending version 2016-08-08 17:45:49 +02:00
controls client/notes: fix saving post breaking selection 2016-08-05 23:04:29 +02:00
models client/models: fix changing avatar 2016-08-13 11:57:27 +02:00
util client/general: clean up, refactor 2016-08-05 23:02:41 +02:00
views client/password-reset: fix event binding 2016-08-14 16:57:46 +02:00
.gitignore client/build: true template precompiling 2016-05-21 10:04:23 +02:00
api.js client/general: use resource versioning 2016-08-07 09:55:51 +02:00
config.js split files into client/ and server/ 2016-04-01 18:48:16 +02:00
events.js client/general: remove api calls from controls 2016-06-18 10:35:20 +02:00
main.js client/tags: fix handling malformed tag export 2016-08-13 13:38:37 +02:00
router.js client/paging: fix endless scroll return path 2016-07-08 00:54:24 +02:00
tags.js client/tags: fix handling malformed tag export 2016-08-13 13:38:37 +02:00
templates.js client/build: true template precompiling 2016-05-21 10:04:23 +02:00