issue68: Make conkeror use the whole screen on demand

Priority: wish Status: resolved
Messages
msg109 (view) Author: areinwarth Date: 2008-10-15.15:14:37
It were nice if conkeror would be able to use the whole screen (like Alt-F11 in firefox). On Linux this
is no problem as most window managers offer this, but using conkeror on Windows made me miss this feature.

Example implementation:

/*
 * Make conkeror use the whole screen. Useful when running the windows
 * version.
 */
interactive("toggle-fullscreen",
            "Toggle whether conkeror uses the whole screen.",
            function(I) {
		if(I.window.fullScreen==false){
		    I.window.fullScreen=true;
		}else{
		    I.window.fullScreen=false;
		}
	    });
define_key(default_global_keymap,  "M-f11", "toggle-fullscreen");
msg111 (view) Author: jbms Date: 2008-10-15.20:15:49
The command seems fine.  I think maybe there should not be a key binding, though.  Perhaps just put the
key binding on the wiki.
msg884 (view) Author: retroj Date: 2011-09-03.23:15:10
this got implemented a while back.. didn't even notice this issue on the tracker until now.  marking
as resolved.
History
Date User Action Args
2011-09-03 23:15:10retrojsetstatus: chatting -> resolved
messages: + msg884
2008-10-15 20:15:49jbmssetstatus: unread -> chatting
messages: + msg111
2008-10-15 15:14:37areinwarthcreate