Skip to content

Instantly share code, notes, and snippets.

@twolfson
Last active August 29, 2015 13:57
Show Gist options
  • Save twolfson/9504362 to your computer and use it in GitHub Desktop.
Save twolfson/9504362 to your computer and use it in GitHub Desktop.
Proof of concept for desktop Pixlr editor
<!DOCTYPE html>
<html>
<head>
<title>Pixlr Editor</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
iframe {
margin: 0;
border: 0;
}
#pixlr {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<iframe id="pixlr" src="http://pixlr.com/editor/"></iframe>
</body>
</html>
{
"name": "gist-node-webkit-pixlr",
"main": "index.html",
"window": {
"width": 800,
"height": 600
},
"webkit": {
"plugin": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment