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

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