tasks content visibility can be toggled
This commit is contained in:
parent
8c0d0dc0fe
commit
abdcc8f764
|
@ -142,6 +142,14 @@ hr{
|
||||||
.noteContent {
|
.noteContent {
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle{
|
||||||
|
height: 30px;
|
||||||
|
padding:1px;
|
||||||
|
margin-top:-30px;
|
||||||
|
float:right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notefooter{
|
.notefooter{
|
||||||
|
|
|
@ -40,5 +40,7 @@ $(document).ready(function(){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);*/
|
);*/
|
||||||
|
$('.toggle').click(function(){
|
||||||
|
$(this).next().toggle();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -34,8 +34,8 @@
|
||||||
<div class="timeline">
|
<div class="timeline">
|
||||||
{{ if .Tasks}} {{range .Tasks}}
|
{{ if .Tasks}} {{range .Tasks}}
|
||||||
<div class="note">
|
<div class="note">
|
||||||
<p class="noteHeading">{{.Title}}</p>
|
<p class="noteHeading">{{.Title}}</p> <button class="toggle btn btn-primary">toggle</button>
|
||||||
<hr>
|
|
||||||
<p class="noteContent">{{.Content}}</p>
|
<p class="noteContent">{{.Content}}</p>
|
||||||
<span class="notefooter">
|
<span class="notefooter">
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
|
|
Loading…
Reference in New Issue