Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
open-source
gridstack.js
Commits
57c65116
Commit
57c65116
authored
Sep 19, 2017
by
radiolips
Committed by
GitHub
Sep 19, 2017
Browse files
Merge pull request #786 from adumesny/develop
fixed cellHeight() check for no-op return
parents
10e141ed
b00f8160
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
15 deletions
+47
-15
spec/gridstack-spec.js
spec/gridstack-spec.js
+46
-14
src/gridstack.js
src/gridstack.js
+1
-1
No files found.
spec/gridstack-spec.js
View file @
57c65116
...
...
@@ -244,6 +244,38 @@ describe('gridstack', function() {
});
});
describe
(
'
grid.cellHeight
'
,
function
()
{
beforeEach
(
function
()
{
document
.
body
.
insertAdjacentHTML
(
'
afterbegin
'
,
gridstackHTML
);
});
afterEach
(
function
()
{
document
.
body
.
removeChild
(
document
.
getElementsByClassName
(
'
grid-stack
'
)[
0
]);
});
it
(
'
should have no changes
'
,
function
()
{
var
options
=
{
cellHeight
:
80
,
verticalMargin
:
10
,
width
:
12
};
$
(
'
.grid-stack
'
).
gridstack
(
options
);
var
grid
=
$
(
'
.grid-stack
'
).
data
(
'
gridstack
'
);
grid
.
cellHeight
(
grid
.
cellHeight
()
);
expect
(
grid
.
cellHeight
()).
toBe
(
80
);
});
it
(
'
should change cellHeight to 120
'
,
function
()
{
var
options
=
{
cellHeight
:
80
,
verticalMargin
:
10
,
width
:
10
};
$
(
'
.grid-stack
'
).
gridstack
(
options
);
var
grid
=
$
(
'
.grid-stack
'
).
data
(
'
gridstack
'
);
grid
.
cellHeight
(
120
);
expect
(
grid
.
cellHeight
()).
toBe
(
120
);
});
});
describe
(
'
grid.minWidth
'
,
function
()
{
beforeEach
(
function
()
{
document
.
body
.
insertAdjacentHTML
(
...
...
src/gridstack.js
View file @
57c65116
...
...
@@ -1610,7 +1610,7 @@
}
var
heightData
=
Utils
.
parseHeight
(
val
);
if
(
this
.
opts
.
cellHeightUnit
===
heightData
.
heightU
nit
&&
this
.
opts
.
h
eight
===
heightData
.
height
)
{
if
(
this
.
opts
.
cellHeightUnit
===
heightData
.
u
nit
&&
this
.
opts
.
cellH
eight
===
heightData
.
height
)
{
return
;
}
this
.
opts
.
cellHeightUnit
=
heightData
.
unit
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment