MacGapProject / MacGap1

Desktop WebKit wrapper for HTML/CSS/JS applications.
Other
3.55k stars 208 forks source link

Added ability to copy/paste text, minimize/maximize/fullscreen the window #77

Closed Macmee closed 11 years ago

Macmee commented 11 years ago

Added ability for users to copy and paste text within JavaScript: macgap.clipboard.copy('texthere'); var clipboardContents = macgap.clipboard.paste();

Added ability for users to enter fullscreen using: macgap.window.toggleFullscreen();

Added ability for users to maximize & minimize the app: macgap.window.maximize(); macgap.window.minimize();

Added ability for users to determine if app is currently maximized: var isMaximized = macgap.window.isMaximized();

Macmee commented 11 years ago

Any updates here?

maccman commented 11 years ago

Nice work!