Remove mainTitle and other changes.
parent
5a614bd3a4
commit
f1095bbffb
|
@ -22,7 +22,9 @@
|
||||||
# Html bind once directive
|
# Html bind once directive
|
||||||
BindHtmlDirective = ->
|
BindHtmlDirective = ->
|
||||||
link = (scope, element, attrs) ->
|
link = (scope, element, attrs) ->
|
||||||
element.html(scope.$eval(attrs.tgBoHtml))
|
val = scope.$eval(attrs.tgBoHtml)
|
||||||
|
scope.$watch attrs.tgBoHtml, (val) ->
|
||||||
|
element.html(val) if val
|
||||||
|
|
||||||
return {link:link}
|
return {link:link}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,9 @@ block content
|
||||||
sidebar.menu-secondary.extrabar.filters-bar
|
sidebar.menu-secondary.extrabar.filters-bar
|
||||||
include views/modules/filters
|
include views/modules/filters
|
||||||
section.main.backlog(tg-backlog)
|
section.main.backlog(tg-backlog)
|
||||||
include views/components/mainTitle
|
h1
|
||||||
|
span(tg-bo-html="project.name")
|
||||||
|
span.green Title
|
||||||
include views/components/summary
|
include views/components/summary
|
||||||
include views/modules/burndown
|
include views/modules/burndown
|
||||||
div.backlog-menu
|
div.backlog-menu
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
h1
|
|
||||||
span ProjectName
|
|
||||||
span.green Title
|
|
|
@ -31,7 +31,7 @@ section.sprints
|
||||||
a.us-name(href="", title="")
|
a.us-name(href="", title="")
|
||||||
span(tg-bo-ref="us.ref")
|
span(tg-bo-ref="us.ref")
|
||||||
span(tg-bo-html="us.subject")
|
span(tg-bo-html="us.subject")
|
||||||
div.column-points.width-1(tg-bindonce-html="us.total_points")
|
div.column-points.width-1(tg-bo-html="us.total_points")
|
||||||
a.button.button-gray(href="", title="Current Sprint Taskboard")
|
a.button.button-gray(href="", title="Current Sprint Taskboard")
|
||||||
span Sprint Taskboard
|
span Sprint Taskboard
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue