first step in allowing resizing of board -- it's not persistant yet

This commit is contained in:
Ali Asaria 2011-05-08 19:12:57 -04:00
parent 0d5adbc340
commit efb28ac4f1
17 changed files with 51 additions and 21 deletions

View file

@ -661,19 +661,7 @@ $( ".sticker" ).draggable({
});
// //After a drag:
// $( "#" + id ).bind( "dragstop", function(event, ui) {
// var data = {
// id: this.id,
// position: ui.position,
// oldposition: ui.originalPosition,
// };
//
// sendAction('moveCard', data);
// });
$( ".board-outline" ).resizable( { ghost: false, minWidth: 700, minHeight: 400 , maxWidth: 3200, maxHeight: 1800} );
});