3

I'm using gridstack.js and need to maintain aspect ratio on-resize. I've tried many ways I found on google but nothing is working. Following is a link to JSFiddle I made to demonstrate the issue: jsFiddle

var options = {
    aspectRatio: 16/9
  };

  $('.grid-stack').gridstack(options);  
Prakash Pazhanisamy
  • 997
  • 1
  • 15
  • 25
Shay
  • 407
  • 2
  • 8
  • 15

1 Answers1

2

try this...

var options = {
resizable:{
    aspectRatio: 16/9
  }
};

$('.grid-stack').gridstack(options); 
Ran P
  • 332
  • 2
  • 4
  • 11