Browse Source

keysnail.js: echoTabInfo: update style

pull/1/head
10sr 11 years ago
parent
commit
db6761e560
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      _keysnail.js

+ 6
- 4
_keysnail.js View File

@@ -252,9 +252,10 @@ var echoTabInfo = (function(){
var currenttab; var currenttab;
function _display(msg){ function _display(msg){
display.prettyPrint(msg, { display.prettyPrint(msg, {
timeout: 2000,
timeout: 1500,
style: { style: {
"font-size": "18px"
"font-size": "18px",
"font-family": "monospace"
} }
}); });
} }
@@ -275,8 +276,9 @@ var echoTabInfo = (function(){
var title = window.content.document.title; var title = window.content.document.title;
var url = window.content.location.href; var url = window.content.location.href;
_display( _display(
(idx + 1).toString() + " / " +
len.toString() + " : " +
"[" +
(idx + 1).toString() + "/" +
len.toString() + "] " +
title + " <" + title + " <" +
decodeURIComponent(url) + ">" decodeURIComponent(url) + ">"
); );


Loading…
Cancel
Save