Skip to content

Instantly share code, notes, and snippets.

@conorbuck
Last active December 18, 2015 11:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conorbuck/5776884 to your computer and use it in GitHub Desktop.
Save conorbuck/5776884 to your computer and use it in GitHub Desktop.
Light Theme
<!-- Load Feather code -->
<script type="text/javascript" src="http://feather.aviary.com/js/feather_beta.js"></script>
<!-- Instantiate Feather -->
<script type='text/javascript'>
var featherEditor = new Aviary.Feather({
apiKey: 'YOUR_KEY',
apiVersion: 3,
tools: 'all',
appendTo: '',
theme: 'light',
onSave: function(imageID, newURL) {
var img = document.getElementById(imageID);
img.src = newURL;
},
onError: function(errorObj) {
alert(errorObj.message);
}
});
function launchEditor(id, src) {
featherEditor.launch({
image: id,
url: src
});
return false;
}
</script>
<div id='injection_site'></div>
<img id='image1' src='http://images.aviary.com/imagesv5/feather_default.jpg'/>
<!-- Add an edit button, passing the HTML id of the image and the public URL of the image -->
<p><input type='image' src='http://images.aviary.com/images/edit-photo.png' value='Edit photo' onclick="return launchEditor('image1', 'http://images.aviary.com/imagesv5/feather_default.jpg');" /></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment