Message109

Author areinwarth
Recipients
Date 2008-10-15.15:14:37
Content
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");
History
Date User Action Args
2008-10-15 15:14:37areinwarthsetmessageid: <1224083677.19.0.172096656933.issue68@servo.cc>
2008-10-15 15:14:37areinwarthlinkissue68 messages
2008-10-15 15:14:37areinwarthcreate