summaryrefslogtreecommitdiff
path: root/client/js/controllers/comments_controller.js
AgeCommit message (Collapse)Author
2020-06-06client+server: implement code autoformatting using prettier and blackShyam Sunder
2020-06-04client/js: format code to ESLintShyam Sunder
2017-02-09server: use index-based paging (#123)rr-
2017-01-21client: refactor linking and routingrr-
Print all links through new uri.js component Refactor the router to use more predictable parsing Fix linking to entities with weird names (that contain slashes, + etc.)
2017-01-08client: rework promise error handlingrr-
2016-09-04client/general: improve URL escapingrr-
Specifically, cater for /, + and % in URL components.
2016-08-28client/paging: avoid redrawing header navigationrr-
2016-08-23client/auth: show errors early in controllersrr-
In other words, verify the privileges client-side before issuing an request to the server. This commit focuses on routing (e.g. clicking a link while not logged in), rather than DOM element visibility that should be already taken care of.
2016-08-22client/events: adjust event namesrr-
1. "change" should be used to passive changes. 2. "submit" should be used to form submits. These are not interchangeable.
2016-07-13client/general: add title to every pagerr-
2016-07-08client/general: refactor URL parameter handlingrr-
2016-07-06client/posts: add mass tagrr-
2016-06-20client/general: replace direct API with modelsrr-
2016-06-18client/general: remove api calls from controlsrr-
Introduce some missing models along the way
2016-06-18client/general: refactor control flowrr-
- Controller lifetime is bound to route lifetime - View lifetime is bound to controller lifetime - Control lifetime is bound to view lifetime - Enhanced event dispatching - Enhanced responsiveness in some places - Views communicate user input to controllers via new event system
2016-06-13client/top-nav: trying out actual mvcrr-
2016-06-12client/paging: remember results in historyrr-
2016-06-12client/router: introduce own routerrr-
I'm tired of page.js lack of documentation around finer quirks, and being forced to read its crap code. Refactored into classes, removed unused cruft.
2016-06-12client/comments: add global comment listrr-
2016-05-29client/general: unimplemented views empty viewportrr-
2016-05-21client/general: refactor all the thingsrr-
- Move controls to the "controls/" directory - Make controls interface look similar to each other - Prefix "private" methods and attributes with underscore
2016-04-06client/routing: move routing to controllersrr-
2016-04-01split files into client/ and server/rr-