diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 10 | ||||
-rw-r--r-- | view/tpl/notes.tpl | 13 |
2 files changed, 23 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ede7c4abd..83781ebb9 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2999,3 +2999,13 @@ img.mail-list-sender-photo { color: black; } .suggest-widget-more { margin-top: 10px; } + + +#note-text { + width: 190px; + max-width: 190px; + height: 150px; +} +#note-save { margin-top: 10px; } + + diff --git a/view/tpl/notes.tpl b/view/tpl/notes.tpl new file mode 100644 index 000000000..7300779f4 --- /dev/null +++ b/view/tpl/notes.tpl @@ -0,0 +1,13 @@ +<div class="widget"> +<script> +function notePost() { + $('#note-rotator').spin('tiny'); + $.post('notes', { 'note_text' : $('#note-text').val() },function(data) { $('#note-rotator').spin(false); }); +} +</script> + +<h3>{{$banner}}</h3> +<textarea name="note_text" id="note-text">{{$text}}</textarea> +<input type="submit" name="submit" id="note-save" value="{{$save}}" onclick="notePost(); return true;"> +<div id="note-rotator"></div> +</div> |