]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Bookmarklet size limit: increase to 4500 chars and add an alert warning 884/head
authorArthurHoaro <arthur@hoa.ro>
Sun, 28 May 2017 11:04:31 +0000 (13:04 +0200)
committerArthurHoaro <arthur@hoa.ro>
Sun, 28 May 2017 11:13:31 +0000 (13:13 +0200)
tpl/default/tools.html

index bf6b6ca3d716c0c2d8af84450164f4c5d51e81e6..35173d179144aab4bac64494cd2e4177e13f61f2 100644 (file)
           function(){
             var%20url%20=%20location.href;
             var%20title%20=%20document.title%20||%20url;
+            var%20desc=document.getSelection().toString();
+            if(desc.length>4000){
+              desc=desc.substr(0,4000)+'...';
+              alert('{function="str_replace(' ', '%20', t('The selected text is too long, it will be truncated.'))"}');
+            }
             window.open(
               '{$pageabsaddr}?post='%20+%20encodeURIComponent(url)+
               '&amp;title='%20+%20encodeURIComponent(title)+
-              '&amp;description='%20+%20encodeURIComponent(document.getSelection().toString().substr(0, 2000))+
+              '&amp;description='%20+%20encodeURIComponent(desc)+
               '&amp;source=bookmarklet','_blank','menubar=no,height=800,width=600,toolbar=no,scrollbars=yes,status=no,dialog=1'
             );
           }
          class="bookmarklet-link"
          href="javascript:(
           function(){
+            var%20desc=document.getSelection().toString();
+            if(desc.length>4000){
+              desc=desc.substr(0,4000)+'...';
+              alert("{function="str_replace(' ', '%20', t('The selected text is too long, it will be truncated.'))"}");
+            }
             window.open(
               '{$pageabsaddr}?private=1&amp;post='+
-              '&amp;description='%20+%20encodeURIComponent(document.getSelection().toString().substr(0, 2000))+
+              '&amp;description='%20+%20encodeURIComponent(desc)+
               '&amp;source=bookmarklet','_blank','menubar=no,height=800,width=600,toolbar=no,scrollbars=yes,status=no,dialog=1'
             );
           }