Skip to content

Instantly share code, notes, and snippets.

View patrick91's full-sized avatar

Patrick Arminio patrick91

View GitHub Profile
function scaleImage($img, w, h, targetWidth, targetHeigth) {
var ratio = targetWidth / w;
var height = h * ratio;
var width = w * ratio;
if (targetHeigth && height > targetHeigth) {
ratio = targetHeigth / h;
height = targetHeigth;
@patrick91
patrick91 / AnimatedRegion.js
Created February 20, 2013 10:24
Backbone Marionette View Transition
var AnimatedRegion = Backbone.Marionette.Region.extend({
show: function(view) {
this.ensureEl();
view.render();
this.close();
if (this.currentView && this.currentView !== view) {
return;
}