Changed section's minimum width to 1

This commit is contained in:
Jakub Swietek
2016-09-21 12:55:05 +02:00
parent 2c9e96406b
commit 917e05a16c

View File

@@ -16,7 +16,7 @@ angular.module("umbraco")
};
$scope.scaleDown = function(section){
var remove = (section.grid > 1) ? 1 : section.grid;
var remove = (section.grid > 1) ? 1 : 0;
section.grid = section.grid-remove;
};