diff options
author | portix <none@none> | 2012-04-13 20:20:27 +0200 |
---|---|---|
committer | portix <none@none> | 2012-04-13 20:20:27 +0200 |
commit | 1440fa9e6f8b392ad197729064db6ea063784bc5 (patch) | |
tree | b742851848c0af8dabb6b9916e6416dc200a99ef /doc/dwb.1 | |
parent | e3dd85d00a552295c078c8f9bf1d8fde0773e547 (diff) | |
download | dwb-1440fa9e6f8b392ad197729064db6ea063784bc5.zip |
Fixing typo in the man page, alias js for execute_javascript
Diffstat (limited to 'doc/dwb.1')
-rw-r--r-- | doc/dwb.1 | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -861,7 +861,7 @@ aliases: Execute a javascript snippet (command .BR execute_javascript , aliases: -.BR exja ). +.BR exja, js ). .TP .BR unbound Set a setting from commandline (command @@ -1015,7 +1015,7 @@ clear_tab |clear |Clear tab close_tab |close |Close tab dump | |Write html of current website to a | |file or stdout if no argument is given -execute_javascript |exja |Execute a javascript snippet +execute_javascript |exja, js |Execute a javascript snippet execute_userscript | |Execute userscript find_backward |bfind |Find backward find_backward_ic |ibfind |Find backward case sensitive @@ -2070,7 +2070,7 @@ The following script will download the actual webpage: #!/bin/bash # dwb: Control w - wget $1 + wget $DWB_URI .fi @@ -2080,7 +2080,7 @@ Popup an alert dialog: #!/bin/bash # dwb: Control h - echo "execute_javascript:window.alert('Hello world');" > ${DWB_FIFO} + echo "js window.alert('Hello world');" > ${DWB_FIFO} .fi |