fix #678
parent
e96604d29e
commit
ef4c95d84a
|
@ -60,6 +60,11 @@ class BacklogController extends mixOf(taiga.Controller, taiga.PageMixin, taiga.F
|
||||||
promise.then =>
|
promise.then =>
|
||||||
@appTitle.set("Backlog - " + @scope.project.name)
|
@appTitle.set("Backlog - " + @scope.project.name)
|
||||||
tgLoader.pageLoaded()
|
tgLoader.pageLoaded()
|
||||||
|
$(".backlog, .sidebar").mCustomScrollbar({
|
||||||
|
theme: 'minimal-dark'
|
||||||
|
scrollInertia: 0
|
||||||
|
axis: 'y'
|
||||||
|
})
|
||||||
|
|
||||||
# On Error
|
# On Error
|
||||||
promise.then null, (xhr) =>
|
promise.then null, (xhr) =>
|
||||||
|
|
|
@ -59,6 +59,13 @@ class KanbanController extends mixOf(taiga.Controller, taiga.PageMixin, taiga.Fi
|
||||||
@appTitle.set("Kanban - " + @scope.project.name)
|
@appTitle.set("Kanban - " + @scope.project.name)
|
||||||
tgLoader.pageLoaded()
|
tgLoader.pageLoaded()
|
||||||
|
|
||||||
|
$(".task-column").mCustomScrollbar({
|
||||||
|
theme: 'minimal-dark'
|
||||||
|
scrollInertia: 0
|
||||||
|
axis: 'y'
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
# On Error
|
# On Error
|
||||||
promise.then null, (xhr) =>
|
promise.then null, (xhr) =>
|
||||||
if xhr and xhr.status == 404
|
if xhr and xhr.status == 404
|
||||||
|
|
|
@ -22,3 +22,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.menu-secondary.sidebar,
|
||||||
|
.backlog {
|
||||||
|
height: 100vh;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
|
@ -14,3 +14,12 @@
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.task-column {
|
||||||
|
height: 100vh;
|
||||||
|
overflow-x: auto;
|
||||||
|
padding-right: 17px;
|
||||||
|
.mCS-minimal-dark {
|
||||||
|
opacity: 1!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -71,7 +71,8 @@
|
||||||
"isMobile": "~0.3.1",
|
"isMobile": "~0.3.1",
|
||||||
"favico.js": "0.3.4",
|
"favico.js": "0.3.4",
|
||||||
"Sortable": "~0.1.8",
|
"Sortable": "~0.1.8",
|
||||||
"pikaday": "~1.2.0"
|
"pikaday": "~1.2.0",
|
||||||
|
"malihu-custom-scrollbar-plugin": "~3.0.4"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"lodash": "~2.4.1",
|
"lodash": "~2.4.1",
|
||||||
|
|
|
@ -74,7 +74,8 @@ paths = {
|
||||||
"app/vendor/jquery-flot/jquery.flot.time.js",
|
"app/vendor/jquery-flot/jquery.flot.time.js",
|
||||||
"app/vendor/flot-axislabels/jquery.flot.axislabels.js",
|
"app/vendor/flot-axislabels/jquery.flot.axislabels.js",
|
||||||
"app/vendor/jquery-textcomplete/jquery.textcomplete.js",
|
"app/vendor/jquery-textcomplete/jquery.textcomplete.js",
|
||||||
"app/vendor/markitup/markitup/jquery.markitup.js"
|
"app/vendor/markitup/markitup/jquery.markitup.js",
|
||||||
|
"app/vendor/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js",
|
||||||
"app/js/jquery.ui.git.js",
|
"app/js/jquery.ui.git.js",
|
||||||
"app/js/sha1.js",
|
"app/js/sha1.js",
|
||||||
"app/plugins/**/*.js"
|
"app/plugins/**/*.js"
|
||||||
|
|
|
@ -4,6 +4,8 @@ linters:
|
||||||
|
|
||||||
CapitalizationInSelector:
|
CapitalizationInSelector:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
ignored_names:
|
||||||
|
- "mCS-minimal-dark"
|
||||||
|
|
||||||
ColorKeyword:
|
ColorKeyword:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in New Issue