summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Uses mixins for repeated functionsPhil Hughes2017-02-036-10/+26
|
* Fixed up specsPhil Hughes2017-02-033-21/+3
|
* Props use objects with required & type valuesPhil Hughes2017-02-037-23/+73
|
* Removes labels instead of closing issue when clicking remove buttonPhil Hughes2017-02-039-18/+38
|
* Fixed JS lint errorsPhil Hughes2017-02-031-3/+2
|
* Fixed issue card specPhil Hughes2017-02-031-2/+4
|
* Added webkit CSS propertiesPhil Hughes2017-02-031-0/+9
|
* Fixed bug with empty state showing after searchPhil Hughes2017-02-0321-30/+48
| | | | Fixed users href path being incorrect
* Fixed bug where 2 un-selected issues would stay on selected tabPhil Hughes2017-02-031-2/+3
|
* Fixed DB schemaPhil Hughes2017-02-035-33/+22
| | | | Changed how components are added in objects
* Added remove buttonPhil Hughes2017-02-035-2/+77
|
* Add optional id property to the issue schemaDouglas Barbosa Alexandre2017-02-031-0/+1
|
* Fixed issue link hrefPhil Hughes2017-02-033-6/+16
|
* Disabled add issues button if no lists existPhil Hughes2017-02-033-11/+23
|
* Remove unnecessary include from RemoveBacklogListsFromBoards migrationDouglas Barbosa Alexandre2017-02-031-2/+0
|
* Fixed issue with issue not persisting in listPhil Hughes2017-02-031-1/+1
|
* Fixed up JS testsPhil Hughes2017-02-033-18/+3
|
* Reuse endpoint to list issues for a list instead of create a new oneDouglas Barbosa Alexandre2017-02-038-60/+79
|
* Removed backlog frontend codePhil Hughes2017-02-032-3/+1
|
* Lists dropdown drops upPhil Hughes2017-02-032-1/+6
|
* Some styling updatesPhil Hughes2017-02-039-26/+79
| | | | Does not remove the issue from the selected tab when it it de-selected, it instead gets purged when changing tab
* Fixed some failing lint testsPhil Hughes2017-02-034-7/+8
|
* Infinite scrollingPhil Hughes2017-02-035-6/+37
|
* Fixed masonry re-triggering when it didnt need toPhil Hughes2017-02-031-2/+8
| | | | Fixed scroll position being lost
* Boards spec update to take into account removed backlogPhil Hughes2017-02-032-146/+73
|
* Fix feature spec for issue sidebar on issue boardsDouglas Barbosa Alexandre2017-02-031-30/+33
|
* Fix feature spec to create new issue on issue boardsDouglas Barbosa Alexandre2017-02-031-2/+3
|
* Remove backlog lists from factoriesDouglas Barbosa Alexandre2017-02-032-7/+0
|
* Update the API endpoint to get the lists of a project boardDouglas Barbosa Alexandre2017-02-031-1/+1
|
* Fix spec for Projects::Boards::ListsControllerDouglas Barbosa Alexandre2017-02-032-2/+2
|
* Remove backlog lists from board servicesDouglas Barbosa Alexandre2017-02-038-88/+6
|
* Remove backlog lists from boardsDouglas Barbosa Alexandre2017-02-035-55/+50
|
* Used issue bulk update instead of different endpointPhil Hughes2017-02-038-21/+16
|
* Added more testsPhil Hughes2017-02-037-3/+317
|
* Reloads issues when re-opening modalPhil Hughes2017-02-039-35/+5
|
* Added empty statePhil Hughes2017-02-038-9/+105
|
* Cleaned up some codePhil Hughes2017-02-038-163/+91
|
* Started testsPhil Hughes2017-02-0312-33/+242
|
* Created a modal storePhil Hughes2017-02-039-73/+98
|
* Search bar now returns dataPhil Hughes2017-02-037-35/+72
| | | | Selected data is added into a different array
* Changed where data gets loadedPhil Hughes2017-02-039-44/+63
| | | | Changed what is hidden when data is loading
* Added selectable list before adding issuesPhil Hughes2017-02-035-8/+100
| | | | Adds issues to list on frontend - need to push to backend
* Mobile sizesPhil Hughes2017-02-031-1/+11
|
* Fixes layout issue on selected tabPhil Hughes2017-02-032-4/+15
| | | | Fixed modal not closing on cancel clicked
* Selected issues show with checkmarkPhil Hughes2017-02-036-24/+141
| | | | | Submit button disables/enables Submit button selects ids - but does not push it yet
* Added masonry layoutPhil Hughes2017-02-037-17/+2548
| | | | Possibly need to change masonry library but so far it is the only one I found that works well
* Styling fix for listPhil Hughes2017-02-034-2/+9
|
* Add issues to boards listPhil Hughes2017-02-0318-52/+438
| | | | | | | | This removes the backlog list & instead creates a modal window that will list all issues that are not part of a list for easy adding onto the board Closes #26205
* Merge branch 'markdown-plantuml' into 'master' Sean McGivern2017-02-039-8/+115
|\ | | | | | | | | | | | | PlantUML support for Markdown Closes #4048 See merge request !8588
| * PlantUML support for MarkdownHoracio Sanson2017-02-039-8/+115
| | | | | | | | | | | | | | | | | | | | | | Allow rendering of PlantUML diagrams in Markdown documents using fenced blocks: ```plantuml Bob -> Sara : Hello Sara -> Bob : Go away ``` Closes: #4048