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
34ddf0ad
Commit
34ddf0ad
authored
Sep 06, 2017
by
radiolips
Committed by
GitHub
Sep 06, 2017
Browse files
Merge pull request #759 from radiolips/bugfix/743-real
Bugfix/743 real
parents
c0c1e47f
aec1135b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/gridstack.js
View file @
34ddf0ad
...
...
@@ -1218,11 +1218,11 @@
resize
:
dragOrResize
});
if
(
node
.
noMove
||
(
this
.
_isOneColumnMode
()
&&
!
self
.
opts
.
disableOneColumnMode
)
||
this
.
opts
.
disableDrag
)
{
if
(
node
.
noMove
||
(
this
.
_isOneColumnMode
()
&&
!
self
.
opts
.
disableOneColumnMode
)
||
this
.
opts
.
disableDrag
||
this
.
opts
.
staticGrid
)
{
this
.
dd
.
draggable
(
el
,
'
disable
'
);
}
if
(
node
.
noResize
||
(
this
.
_isOneColumnMode
()
&&
!
self
.
opts
.
disableOneColumnMode
)
||
this
.
opts
.
disableResize
)
{
if
(
node
.
noResize
||
(
this
.
_isOneColumnMode
()
&&
!
self
.
opts
.
disableOneColumnMode
)
||
this
.
opts
.
disableResize
||
this
.
opts
.
staticGrid
)
{
this
.
dd
.
resizable
(
el
,
'
disable
'
);
}
...
...
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