aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/notes.tpl
blob: b67f66f5bcae86573d5c9508ea24c192de656f15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<div class="widget">
<script>
$(document).on('focusout',"#note-text",function(e){
	$.post('notes', { 'note_text' : $('#note-text').val() });
});
</script>

<h3>{{$banner}}</h3>
<textarea name="note_text" id="note-text">{{$text}}</textarea>
</div>