Skip to content

Commit

Permalink
Independent list scrolling and vue files
Browse files Browse the repository at this point in the history
  • Loading branch information
piascikj committed Apr 10, 2018
1 parent 8c46fa3 commit 1d1dd53
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
11 changes: 2 additions & 9 deletions .imdone/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,10 @@
"name": "CHANGED",
"hidden": true
},
{
"name": "NOTE",
"hidden": false
},
{
"name": "DONE",
"hidden": false
},
{
"name": "QUESTION",
"hidden": false
"hidden": false,
"ignore": true
}
],
"marked": {
Expand Down
2 changes: 1 addition & 1 deletion .imdone/sort.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"TODO":["144","143","108","139","104","141","109","67","93","78","87","83","98","95","72","68","69","75","99","94","80","76","71","81","66","96","296","b1da42e032be3184a88440895fcbd36033f98216","64","65","44","45","1","4","33","42","6","35","3","12","5","2","41","27","11","0","61","37282a0e7a76cc99a56b7a44ceeb5a32a70b8738","10","ac3288b84614c6cf1e5797cff1bcbd12d0853f83","66344d12347230297b6073dfe5e7e6ad667a8d53","a486a8697ce2e6e39ee0f260052f69b0bbb6111c","22","59","36","37","28","38","47","25"],"DOING":["107","75","142","141","62","59","36","10","13","44","45","20","104","139","108"],"BACKLOG":["34","13","21","43","46","16","23","15","9","40","31","7","19","18","26","8","30","48","39","29","37","17","45"],"NOTE":["142","92"]}
{"TODO":["144","143","108","139","104","141","109","67","93","78","87","83","98","95","72","68","69","75","99","94","80","76","71","81","66","96","296","b1da42e032be3184a88440895fcbd36033f98216","64","65","44","45","1","4","33","42","6","35","3","12","5","2","41","27","11","0","61","37282a0e7a76cc99a56b7a44ceeb5a32a70b8738","10","ac3288b84614c6cf1e5797cff1bcbd12d0853f83","66344d12347230297b6073dfe5e7e6ad667a8d53","a486a8697ce2e6e39ee0f260052f69b0bbb6111c","22","59","36","37","28","38","47","25"],"DOING":["107","142","75","141","62","59","36","10","13","44","45","20","104","139","108"],"BACKLOG":["34","13","21","43","46","16","23","15","9","40","31","7","19","18","26","8","30","48","39","29","37","17","45"],"NOTE":["142","92"],"DONE":["146"]}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.4.12
- Independent list scrolling
- Find TODOs in .vue files

## 2.4.11
- Fix issue with project path when opening board
- ignore tasks found in list if list has property `ignore: true` in config.lists
Expand Down
2 changes: 1 addition & 1 deletion lib/views/imdone-atom-view.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -534,10 +534,10 @@ class ImdoneAtomView extends ScrollView
if (tasks.length < 1)
@a href: '#', title: "delete #{list.name}", class: 'delete-list', "data-list": list.name, =>
@span class:'icon icon-trashcan'
@ol class: 'tasks', "data-list":"#{list.name}"
if (list.ignore)
@div class:'ignored-list-message text-center', =>
@raw "Cards dropped here will be ignored by imdone."
@ol class: 'tasks', "data-list":"#{list.name}"
$tasks = $list.find('.tasks')
$tasks.append(self.getTask task) for task in tasks
$list
Expand Down
7 changes: 5 additions & 2 deletions styles/imdone-atom.less
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,10 @@
.list {
float: left;
width: @board-list-width;
padding: 10px;
padding: 10px 5px 50px 10px;
background-color: @panel-heading-background-color;
margin-right: 10px;
height: 100%;
.list-name-wrapper {
background-color: @task-background-color;
font-size: 1.5em;
Expand All @@ -480,7 +481,9 @@
.tasks {
min-height: 50px;
list-style: none;
padding-left: 0;
padding: 0 10px 0 0;
height: 100%;
overflow-y: auto;
}
.task {
background-color: @task-background-color;
Expand Down

0 comments on commit 1d1dd53

Please sign in to comment.