summaryrefslogtreecommitdiff
path: root/assets/js
AgeCommit message (Collapse)Author
2019-08-23Fixed issue of tooltip not disapearingEskiso
Tooltips would not disappear if the mouse was never on it. If you move your mouse on an icon and then move the mouse out without passing by the tooltip, the tooltip would remain active until mouse pass and leave or click somewhere else. With this update, the tooltip will be removed if you leave the target unless you move the mouse to the tooltip.
2019-08-03Fix reference to text-carret js libraryRafael de Camargo
Closes #4257
2019-07-25Remove dependency on nodejs and gulpFrédéric Guillot
2019-07-24Add link button to text editorRafael de Camargo
2019-07-23Fix html parsing on markdown editorRafael de Camargo
Closes #4243
2019-02-21Remove dependency on bowerFrédéric Guillot
2019-02-19Replace accordion Javascript component by <details> HTML elementFrédéric Guillot
2018-12-20Limit assignee drop-down selector scopeMiodrag Tokić
On the task details page "Add a sub-task" pop-up modal contains drop-down (the SELECT HTML element) with "form-user_id" as the `name` and the `id` attribute value. This element is in conflict with another, hidden INPUT element with the same `name` and the `id` value. This causes an issue where clicking the "Me" (Assignee) link / shortcut (A) element doesn't select your name in the Assignee SELECT element. Avoiding conflict by changing the SELECT element `id` value is not possible as the SELECT element is generated using `FormHelper::select()` function which uses the same value for attribute `name` and `id`. Given the assignee shortcut feature is used only in two places: edit task and edit sub-task dialog, the simplest solution is to select the closest SELECT element to the link / shortcut (A) element or limit the scope to the currently opened dialog. This fix uses the latter approach by limiting the scope of targeted selector.
2018-10-23Revert "Easier closing of dialogs" (introduces regression on date time picker)Frédéric Guillot
This reverts commit 71630aaa77b518d3d0165f772251f09cc249f015.
2018-10-15Easier closing of dialogsMichael
Allow closing of dialogs by clicking on the background area around it. When the dialog is closed in this manner, if it contains a form with changed data present a warning that there are unsaved changes. Likewise if the user attempts to navigate away from the page, eg page reload, bookmark click, address bar entry. If the dialog does not contain a form or the data remains unchanged no warning messages are shown.
2018-10-01Do not try to redirect to login page when offlineVadim Zhukov
2018-10-01Define fixed width for auto-complete dropdownFrédéric Guillot
2018-09-28Fix task drag and drop slowdown when a column is hiddenJulian Maurice
It looks like jQuery UI has some difficulties when a column with a lot of tasks is hidden. Adding ':visible' to the connectWith properties of sortable() seems to fix the problem Fixes #4011
2018-06-11Update jQuery to latest versionFrédéric Guillot
2018-06-01Add checkboxes in list view to move tasks to another column at onceFrédéric Guillot
2018-05-03Fix escaping issue for Markdown editorFrédéric Guillot
2018-04-20Rebuild vendor assets without jQuery tooltip pluginFrédéric Guillot
2018-04-20Rewrite tooltips code without jQueryFrédéric Guillot
2018-01-29Add CSRF check for task and project files uploadFrédéric Guillot
2018-01-25Rebuild JSFrédéric Guillot
2018-01-25Set the correct swimlane/column ID when moving a task via its internal dialog.kousu
Fixes https://github.com/kanboard/kanboard/issues/3114.
2017-11-17Add the possibility to send tasks and comments to multiple recipientsFrederic Guillot
2017-11-10Fix project dropdown visibility when page is scrolled downFrederic Guillot
2017-11-09Add user backend provider systemFrederic Guillot
2017-11-09Merge and fix PR #3469Frederic Guillot
2017-11-02Add predefined templates for task descriptionsFrederic Guillot
2017-10-18Improve external task integrationFrederic Guillot
2017-06-23Fix Javascript language mappingFrederic Guillot
2017-06-19Rebuild assetsFrederic Guillot
2017-06-03Use dot notation in Javascript componentFrederic Guillot
2017-06-03Add autocomplete dropdown on comment subject and email fieldsFrederic Guillot
2017-06-03Add configurable list of predefined subjects when sending a task by emailFrederic Guillot
2017-06-03Add dropdown menu to autocomplete email field from project membersFrederic Guillot
2017-05-18Added new javascript events for dropdown and modalON-jz
- dropdown.clicked - dropdown.afterRender - dropdown.beforeDestroy - modal.open - modal.afterRender - modal.beforeDestroy
2017-04-08Add localized js files for datepickerFrederic Guillot
2017-04-07Add project restriction to block task editionFrederic Guillot
2017-04-01Move Gantt charts to external pluginFrederic Guillot
2017-04-01Move calendar to external pluginFrederic Guillot
2017-03-19Restore task title link on boardFrederic Guillot
2017-03-19Improve subtask toggleFrederic Guillot
2017-03-11Move isVisible() methodFrederic Guillot
2017-02-26Add toggle button to show/hide subtasks in task list viewFrederic Guillot
2017-02-23Avoid potential XSS in Gantt chartFrederic Guillot
2017-02-23Update ChangeLog, contributors and compile JSFrederic Guillot
2017-02-23Merge pull-request #3069Frederic Guillot
2017-02-23Merge pull-request #3071Frederic Guillot
2017-02-23Make link to calendar view bookable (#3063)Konstantin
2017-02-23Reintroduce word search in board selector #3052Konstantin Vorobyev
2017-02-23Even more simple: hide columns first, then resize task listsKonstantin Vorobyev
2017-02-23Properly resize task list height on column toggle #3069Konstantin Vorobyev