aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
Commit message (Collapse)AuthorAgeFilesLines
* fix filtering by addr in handleNotificationsItems()Mario Vavti2018-12-021-1/+2
| | | (cherry picked from commit f083c0cba10248926661db42d99d04b5eb7579e8)
* allow notification filtering by name or addrzotlabs2018-11-301-1/+1
|
* autocomplete performance: this slightly changes the editor contact ↵Mario Vavti2018-10-241-1/+1
| | | | autocomplete behaviour. queries using *like* with a prepended % to the query string do not make use of indices. this is no big issue when we query abook but can get really slow when xchan table is involved. this commit changes the xchan table only queries to use the *str%* format. this means that the result set for channels we are not connected with will change in a way that xchan_name and xchan_addr will bematched only from the beginning of the name or address. this commit also changes textcomplete to only start the query after the 3rd character. the result set between 2 and 3 characters is mostly very different and only from 3 chars on there is a high possibility the channel we look for is already in the result.
* textcomplete: return up to 100 items and look for for matches in the entire ↵Mario Vavti2018-10-221-12/+28
| | | | string (not just the beginning) when suggesting emojis
* add summary to bbcode autocomplete listMario Vavti2018-10-221-2/+2
|
* Update main.jsMax Kostikov2018-10-141-6/+7
|
* Update main.jsMax Kostikov2018-10-141-1/+1
|
* Update main.jsMax Kostikov2018-10-131-19/+21
|
* Revert "Merge branch 'patch-11' into 'dev'"Mario Vavti2018-10-131-22/+19
| | | | | This reverts commit e5184458530bb0394e12026c82ee89257115f690, reversing changes made to 8ce240b95c62f4b702b60977f63b0223a8ec0849.
* Update main.jsMax Kostikov2018-10-131-19/+22
|
* implement conversation tools (settings/conversation), remove additional ↵Mario Vavti2018-09-271-0/+29
| | | | features from the settings menu and get rid of skill levels
* this was neededzotlabs2018-09-181-1/+1
|
* missing autocomplete (e.g. mentions) in mod_photos commentszotlabs2018-09-181-2/+3
|
* when calling timeago() from mod_mail.js it is called before the translations ↵Mario Vavti2018-07-132-1/+3
| | | | are applied - move the call to main.js and be more specific with the selector to not trigger calls for other modules (eg network) which is handled elsewhere to not be to much of an performance hog (to many dates at a time)
* update jquery.timeago libMario Vavti2018-07-131-2/+2
|
* move cid filter js to the widgetMario Vavti2018-06-091-3/+0
|
* new feature filter network by nameMario Vavti2018-06-081-0/+3
|
* finalize filters and forum notificationsMario Vavti2018-06-021-1/+2
|
* some more work on forum notificationsMario Vavti2018-06-021-2/+19
|
* unread forum notifications - wip/unfinishedMario Vavti2018-06-011-1/+1
|
* new_channel - make text strings translatable and use the name as a base for ↵zotlabs2018-05-211-6/+7
| | | | the nick if you try to create without entering a nick
* do not update #acl-list-content on every click in jot. we just need this ↵Mario Vavti2018-05-201-49/+51
| | | | updated when in cutom mode (which is rarely the case). jot interaction was getting sluggish due to this when having lots of contacts.
* fix issue where images were not visible in acl selector after using searchMario Vavti2018-05-191-0/+4
|
* remove debug codeMario Vavti2018-05-181-4/+0
|
* an attempt to fix the new_channel validation situationMario Vavti2018-05-181-24/+72
|
* display address in contact_format() instead of nickMario Vavti2018-05-171-1/+1
|
* consolidate recent autocomplete changesMario Vavti2018-05-132-29/+14
|
* remove the old autocomplete cache mechanismzotlabs2018-05-061-21/+1
|
* autocomplete after 2 chars instead of 3; this was changed some months back ↵zotlabs2018-05-061-8/+8
| | | | to work around implementation quirks in the custom cache driver that is now disabled.
* add changes from ae35ac0cec3f6bf337 to contact_autocomplete so channel ↵zotlabs2018-05-031-2/+3
| | | | source completion will work correctly
* quick fix for issue #1150 - needs improvement and review of other ↵Mario Vavti2018-05-031-2/+5
| | | | textcomplete implementations.
* admin delete of fileszotlabs2018-05-021-0/+2
|
* if there is more than one textarea we need to work through all of themMario Vavti2018-04-261-17/+26
|
* a better way to deal with js errors in autocomplete plugins if the object is ↵Mario Vavti2018-04-262-2/+20
| | | | not available
* omit js error if saved searsches are turned offMario Vavti2018-04-261-1/+2
|
* fix the on select handlersMario Vavti2018-04-261-6/+6
|
* upgrade to textcomplete (jquery.textcomplete is discontinued), enable ↵Mario Vavti2018-04-261-17/+53
| | | | built-in cache and unify to start lookup after 3 characters
* some tagging workzotlabs2018-04-251-15/+15
|
* make tag autocomplete less scary looking in the editor. If this works out we ↵zotlabs2018-04-241-6/+1
| | | | can simplify and get rid of a huge amount of spaghetti tag logic.
* Merge pull request #1097 from galettesaucisse/patch-13git-marijus2018-04-231-1/+1
|\ | | | | Proposed fix for issue #1091 - mod-help.js
| * Proposed fix for issue #1091Galette Saucisse2018-04-201-1/+1
| |
* | fix navbar contact autocomplete 'undefined' hovertipzotlabs2018-04-191-1/+1
|/
* update the search jszotlabs2018-04-161-1/+10
|
* fix wrong item keyMario Vavti2018-04-131-1/+1
|
* Merge remote-tracking branch 'mike/master' into devMario Vavti2018-04-131-15/+36
|\
| * autosave comment enhancementszotlabs2018-04-121-9/+15
| |
| * work on autosavezotlabs2018-04-121-15/+30
| |
* | provide visible star status for starred postsMario Vavti2018-04-131-2/+5
|/
* Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_mergezotlabs2018-04-111-1/+2
|\
| * also clean localStorage upon logout or channel switchMario Vavti2018-04-111-1/+2
| |