Created
April 5, 2013 22:19
-
-
Save vadimdemedes/5323133 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = 'http://media.getchute.com/media/5aAxfa' // sample url returned from the Media Chooser | |
// Fill a 500x300 rectangle | |
Chute.fill(500, 300, url); // => http://media.getchute.com/media/5aAxfa/500x300 | |
// Fit into 500x300 rectangle | |
Chute.fit(500, 300, url); // => http://media.getchute.com/media/5aAxfa/fit/500x300 | |
// Max width of 500px | |
Chute.width(500, url); // => http://media.getchute.com/media/5aAxfa/w/500 | |
// Max height of 300px | |
Chute.height(300, url); // => http://media.getchute.com/media/5aAxfa/h/300 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment