summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/new-bookmark.php7
-rw-r--r--views/new-post.php7
2 files changed, 14 insertions, 0 deletions
diff --git a/views/new-bookmark.php b/views/new-bookmark.php
index 5738036..d4100ba 100644
--- a/views/new-bookmark.php
+++ b/views/new-bookmark.php
@@ -62,6 +62,13 @@
<script>
$(function(){
+ // ctrl-s to save
+ $(window).on('keydown', function(e){
+ if(e.keyCode == 83 && e.ctrlKey){
+ $("#btn_post").click();
+ }
+ });
+
$("#btn_post").click(function(){
var syndications = [];
diff --git a/views/new-post.php b/views/new-post.php
index 5221dc8..fa7b9bc 100644
--- a/views/new-post.php
+++ b/views/new-post.php
@@ -102,6 +102,13 @@
<script>
$(function(){
+ // ctrl-s to save
+ $(window).on('keydown', function(e){
+ if(e.keyCode == 83 && e.ctrlKey){
+ $("#btn_post").click();
+ }
+ });
+
$("#btn_post").click(function(){
var syndications = [];