Skip to content

Commit

Permalink
Merge pull request #378 from troolee/tests/grid-height
Browse files Browse the repository at this point in the history
Tests/grid height
  • Loading branch information
troolee committed Mar 2, 2016
2 parents 208a8ba + 373c1ea commit 93bedb4
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 7 deletions.
4 changes: 4 additions & 0 deletions dist/gridstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,10 @@
return $.extend({}, n);
}));

if (typeof clonedNode === 'undefined') {
return true;
}

clone.moveNode(clonedNode, x, y, width, height);

var res = true;
Expand Down
2 changes: 1 addition & 1 deletion dist/gridstack.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/gridstack.min.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ exports.config = {
capabilities: {
browserName: 'firefox',
version: '',
platform: 'ANY'
platform: 'ANY',
loggingPrefs: {
browser: 'SEVERE'
}
},
};
19 changes: 15 additions & 4 deletions spec/e2e/gridstack-spec.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
describe('gridstack.js two grids demo', function() {
describe('gridstack.js with height', function() {
beforeAll(function() {
browser.ignoreSynchronization = true;
});

beforeEach(function() {
browser.get('http://localhost:8080/demo/two.html');
browser.get('http://localhost:8080/spec/e2e/html/gridstack-with-height.html');
});

it('should have proper title', function() {
expect(browser.getTitle()).toEqual('Two grids demo');
it('shouldn\'t throw exeption when dragging widget outside the grid', function() {
var widget = element(by.id('item-1'));
var gridContainer = element(by.id('grid'));

browser.actions()
.mouseDown(widget, {x: 20, y: 20})
.mouseMove(gridContainer, {x: 300, y: 20})
.mouseUp()
.perform();

browser.manage().logs().get('browser').then(function(browserLog) {
expect(browserLog.length).toEqual(0);
});
});
});
72 changes: 72 additions & 0 deletions spec/e2e/html/gridstack-with-height.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gridstack.js tests</title>

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="../../../dist/gridstack.css"/>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.0/jquery-ui.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.5.0/lodash.min.js"></script>
<script src="../../../dist/gridstack.js"></script>

<style type="text/css">
.grid-stack {
background: lightgoldenrodyellow;
}

.grid-stack-item-content {
color: #2c3e50;
text-align: center;
background-color: #18bc9c;
}
</style>
</head>
<body>
<div class="container-fluid">
<h1>gridstack.js tests</h1>

<br/>

<div class="grid-stack" id="grid">
</div>
</div>


<script type="text/javascript">
$(function() {
var options = {
height: 5
};
$('.grid-stack').gridstack(options);

new function() {
var items = [
{x: 0, y: 0, width: 2, height: 2},
{x: 2, y: 5, width: 1, height: 1}
];

this.grid = $('.grid-stack').data('gridstack');
this.grid.removeAll();
items = GridStackUI.Utils.sort(items);
var id = 0;
_.each(items, function(node) {
var w = $('<div><div class="grid-stack-item-content" /><div/>');
w.attr('id', 'item-' + (++id));
this.grid.addWidget(w,
node.x, node.y, node.width, node.height);
}, this);
};
});
</script>
</body>
</html>
4 changes: 4 additions & 0 deletions src/gridstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,10 @@
return $.extend({}, n);
}));

if (typeof clonedNode === 'undefined') {
return true;
}

clone.moveNode(clonedNode, x, y, width, height);

var res = true;
Expand Down

0 comments on commit 93bedb4

Please sign in to comment.