Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Motion Bank
MB.js
Quasar Components MoSys
Commits
3b710cfb
Commit
3b710cfb
authored
Oct 31, 2019
by
christianrhansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed intersecting query
parent
a4e015e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
partials/GridEditor.vue
partials/GridEditor.vue
+3
-3
No files found.
partials/GridEditor.vue
View file @
3b710cfb
...
...
@@ -464,8 +464,8 @@
this
.
tempHandler
.
move
.
side
=
'
left
'
}
// intersecting
else
if
(
Math
.
sign
(
obj
.
offsetLeft
)
===
0
)
{
this
.
tempHandler
.
resize
.
intersectingMain
=
true
else
if
(
isNaN
(
Math
.
sign
(
obj
.
offsetLeft
)
)
)
{
//
this.tempHandler.resize.intersectingMain = true
}
// behind right side
else
if
(
Math
.
sign
(
obj
.
offsetLeft
)
===
1
)
{
...
...
@@ -482,7 +482,7 @@
this
.
tempHandler
.
resize
.
side
=
'
left
'
}
// intersecting
else
if
(
Math
.
sign
(
obj
.
offsetLeft
)
===
0
)
{
else
if
(
isNaN
(
Math
.
sign
(
obj
.
offsetLeft
)
)
)
{
}
// on right side
else
if
(
Math
.
sign
(
obj
.
offsetLeft
)
===
1
)
{
...
...
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