summaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)Author
2020-09-16fix default password nag dialog, load via xhrAndrew Dolgov
2020-09-15editFeed: only try to reload feed tree in preferences if its actually thereAndrew Dolgov
2020-09-15comments link: load in new tabAndrew Dolgov
2020-09-15editarticletags: load dialog via XHRAndrew Dolgov
2020-09-15backend handler: require CSRF, remove obsolete codeAndrew Dolgov
2020-09-15public/logout: require valid CSRF tokenAndrew Dolgov
2020-09-15Feeds: load quickaddfeed and search dialogs via XHR w/ CSRF protectionAndrew Dolgov
2020-09-15- backend: require CSRF token to be passed via POSTAndrew Dolgov
- do not leak CSRF token via GET request in feed debugger - rework Article/redirect to use POST
2020-09-15don't pass csrf token as a GET parameter to ArticleAndrew Dolgov
2020-09-15require CSRF token for Article/redirectAndrew Dolgov
2020-09-15- enable CSRF support earlierAndrew Dolgov
- remove rpc/sanityCheck from CSRF-excluded calls
2020-09-14remove csrf token from rpc method sanityCheckAndrew Dolgov
2020-07-09Store FeedTree data in localStoragenanaya
Patching internal functions of dijit.Tree as they don't provide option on where to store the data. It stores to cookies by default but the data can get quite big for hundreds of feeds and exceeds cookies size limit. Not to mention it'll cause the cookie to be sent during any request with nothing handling it server side and just wasting bandwidth. This patch will also migrate current data in cookie to local storage accordingly.
2020-06-05more eslint fixessingle-app-objectAndrew Dolgov
2020-06-05eslint-related fixes; move a few things from global context to AppAndrew Dolgov
2020-06-04fix various minor issues reported by eslintAndrew Dolgov
2020-06-04unify prefs/main App objects, remove fake classes, use single static App ↵Andrew Dolgov
object instead
2020-06-04same, but for preferencesAndrew Dolgov
2020-06-04don't use declare() for static objects with no inheritance because ↵Andrew Dolgov
apparently it's not actually needed by AMD
2020-06-02move isCombinedMode to AppBase so we wouldn't crash in preferencesAndrew Dolgov
2020-05-25add Headlines.default_force_previous, default_force_to_topAndrew Dolgov
2020-05-23only bind up/down in 3 panel modeAndrew Dolgov
2020-05-22- RIP smooth scrolling and associated hacksAndrew Dolgov
- attempt to make Headlines.move() / Article.cdmMoveToId() behave a bit more intuitively
2020-05-19Headlines.move: add params.force_previous to always move to previous article ↵Andrew Dolgov
in CDM
2020-05-19Headlines.move: use requestAnimationFrame in CDM :(Andrew Dolgov
2020-05-17Headlines.move: when going back to top of active article, use a smarter (?) ↵Andrew Dolgov
offset calculation
2020-05-17rename Headlines.correctHeadlinesOffset() to scrollToArticleId()Andrew Dolgov
invoke it in Article.view() instead of all over the place
2020-05-17Headlines.move: maybe glitch less when moving back to top, etcAndrew Dolgov
2020-05-17implement keyboard-related changes discussed in ↵Andrew Dolgov
https://community.tt-rss.org/t/changing-the-amount-of-scroll-by-arrow-key/3452/7
2020-05-13only enable unpack observer in expanded modeAndrew Dolgov
2020-05-13use intersection observer to unpack visible articles, remove ↵Andrew Dolgov
Headlines.unpackVisible()
2020-05-13remove floating title, use position: sticky for cdm headers insteadAndrew Dolgov
2020-05-09Article.cdmMoveToId: don't crash if params is not givenAndrew Dolgov
2020-05-09rename cdmScrollToId to cdmMoveToIdAndrew Dolgov
prevent smooth scrolling when going directly to an article
2020-05-09add hotkey "\" to cancel current searchAndrew Dolgov
2020-05-03Allow setting Insert (45) and Delete (46) as hotkeysltGuillaume
These are not reported via keypress either, so handle them via keydown.
2020-04-17Article.pack: dispose of unpacked content properlyAndrew Dolgov
2020-04-17Headlines.renderAgain: scroll instantly to active article when going back to ↵Andrew Dolgov
combined mode on the fly
2020-04-17in combined non-expanded mode, pack headline rows as they are unfocused to ↵Andrew Dolgov
save RAM
2020-04-07if comment URL is not specified but comment count is non-zero, show comments ↵Andrew Dolgov
prompt leading to the article
2020-02-28source validationtextarea in main UIAndrew Dolgov
2020-02-28add validationtextarea control, use it for filter match editorAndrew Dolgov
2020-02-28getTestResults: don't try to use previously removed variableAndrew Dolgov
2020-02-28filter edit dialog: load rule editor via XHRAndrew Dolgov
2020-02-28fix typoAndrew Dolgov
2020-02-28filter test dialog: pass contents via xhr POSTAndrew Dolgov
2020-02-28af_readability: allow get full text button to work as a toggle; in cdm, ↵Andrew Dolgov
scroll to article after embedding
2020-02-27update toggle_embed_original hotkey to invoke readability embed instead of ↵Andrew Dolgov
removed embed_original plugin
2020-02-27af_readability: add article button to embed content of a specific articleAndrew Dolgov
2020-02-22feed tree: do not mark Labels as SpecialAndrew Dolgov