note widget: whitespace and resize the textarea to reveal full content
This commit is contained in:
@@ -1,27 +1,32 @@
|
||||
<div class="widget">
|
||||
<script>
|
||||
var noteSaveTimer = null;
|
||||
$(document).on('focusout',"#note-text",function(e){
|
||||
if(noteSaveTimer)
|
||||
clearTimeout(noteSaveTimer);
|
||||
notePostFinal();
|
||||
noteSaveTimer = null;
|
||||
});
|
||||
<h3>{{$banner}}</h3>
|
||||
<textarea name="note_text" id="note-text">{{$text}}</textarea>
|
||||
<script>
|
||||
var noteSaveTimer = null;
|
||||
var noteText = $('#note-text');
|
||||
|
||||
$(document).on('focusin',"#note-text",function(e){
|
||||
noteSaveTimer = setTimeout(noteSaveChanges,10000);
|
||||
});
|
||||
$(document).ready(function(){
|
||||
noteText.height(noteText[0].scrollHeight);
|
||||
});
|
||||
|
||||
function notePostFinal() {
|
||||
$.post('notes/sync', { 'note_text' : $('#note-text').val() });
|
||||
}
|
||||
$(document).on('focusout',"#note-text",function(e){
|
||||
if(noteSaveTimer)
|
||||
clearTimeout(noteSaveTimer);
|
||||
notePostFinal();
|
||||
noteSaveTimer = null;
|
||||
});
|
||||
|
||||
function noteSaveChanges() {
|
||||
$.post('notes', { 'note_text' : $('#note-text').val() });
|
||||
noteSaveTimer = setTimeout(noteSaveChanges,10000);
|
||||
}
|
||||
</script>
|
||||
$(document).on('focusin',"#note-text",function(e){
|
||||
noteSaveTimer = setTimeout(noteSaveChanges,10000);
|
||||
});
|
||||
|
||||
<h3>{{$banner}}</h3>
|
||||
<textarea name="note_text" id="note-text">{{$text}}</textarea>
|
||||
function notePostFinal() {
|
||||
$.post('notes/sync', { 'note_text' : $('#note-text').val() });
|
||||
}
|
||||
|
||||
function noteSaveChanges() {
|
||||
$.post('notes', { 'note_text' : $('#note-text').val() });
|
||||
noteSaveTimer = setTimeout(noteSaveChanges,10000);
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user