aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/notes.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-09 15:27:46 -0800
committerfriendica <info@friendica.com>2013-12-09 15:27:46 -0800
commitf85cba10eb3d976d715c7a80fe69fe15d9dc468c (patch)
tree45280620e820e72a9a1876fada5333f4d8b5d35c /view/tpl/notes.tpl
parentb5f73d01c57bce1758eb7abd3ede327218be5404 (diff)
downloadvolse-hubzilla-f85cba10eb3d976d715c7a80fe69fe15d9dc468c.tar.gz
volse-hubzilla-f85cba10eb3d976d715c7a80fe69fe15d9dc468c.tar.bz2
volse-hubzilla-f85cba10eb3d976d715c7a80fe69fe15d9dc468c.zip
notes widget
Diffstat (limited to 'view/tpl/notes.tpl')
-rw-r--r--view/tpl/notes.tpl13
1 files changed, 13 insertions, 0 deletions
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>