Google Code Exporter
Google Code Exporter
``` Is there a possibility that would be able to close the main window using the javascriptAPI? Clicking a link would then close the program. ``` Original issue reported on...
``` The order of the MIME Types should be changed from: {".gz", 3, "application/x-gunzip"}, {".js.gz", 6, "text/javascript"}, To: {".js.gz", 6, "text/javascript"}, {".gz", 3, "application/x-gunzip"}, So that it will work out...
``` How about adding support for dragging a file into phpdesktop window? There is the "external_drag" option on the ChromeSettings wiki page that disables dragging by default as it is...
``` Is it currently possible with CEF? If not, would it be hard to create a patch for CEF? There is Issue 18 "Encrypt and embed static resources (js/css/images) in...
``` There is already a "save_position" option on the Settings wiki page marked as "not yet implemented". We might think on introducing more options, not only to save window size...
``` It is already possible to open file or external protocol using system("start .."). Though some official API for this would be nice with even more options. Add API for...
``` Webkit already provides such inputs. For example for multiple files with extension filtering: Browsing for a directory: Not sure how it works, whether browsing for a directory needs some...
``` For an example API that we could provide see the Node-Webkit API for: Menu https://github.com/rogerwang/node-webkit/wiki/Menu MenuItem https://github.com/rogerwang/node-webkit/wiki/MenuItem Window-menu https://github.com/rogerwang/node-webkit/wiki/Window-menu ``` Original issue reported on code.google.com by `[email protected]` on 16...
``` Currently when you click on a "mailto:" link you will see an error: "Failed to load URL mailto:[email protected]? ... with error (-302)." It can be fixed in CefRequestHandler::OnBeforeBrowse(). In...
``` How to change javascript alert title from 'Javascript Alert - 127.0.0.1:54007' to any custom title? ``` Original issue reported on code.google.com by `[email protected]` on 1 Feb 2014 at 1:48