Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
ee9b92b7
Commit
ee9b92b7
authored
May 09, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed extra code
parent
7538e3b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
17 deletions
+13
-17
layout.default.js
src/module/layout.default.js
+13
-17
No files found.
src/module/layout.default.js
View file @
ee9b92b7
...
...
@@ -430,23 +430,19 @@ KityMinder.registerModule( "LayoutDefault", function () {
}
};
var
showNodeInView
=
function
(
node
)
{
// var padding = 5;
// var viewport = minder.getPaper().getViewPort();
// var offset = node.getRenderContainer().getRenderBox( minder.getRenderContainer() );
//
var showNodeInView = function ( node ) {
//
// var padding = 5;
//
// var viewport = minder.getPaper().getViewPort();
//
// var offset = node.getRenderContainer().getRenderBox( minder.getRenderContainer() );
// var tmpX = viewport.center.x * 2 - ( offset.x + offset.width );
// var tmpY = viewport.center.y * 2 - ( offset.y + offset.height );
//
// var tmpX = viewport.center.x * 2 - ( offset.x + offset.width );
//
// var tmpY = viewport.center.y * 2 - ( offset.y + offset.height );
// var dx = offset.x < 0 ? -offset.x : Math.min( tmpX, 0 );
// var dy = offset.y < 0 ? -offset.y : Math.min( tmpY, 0 );
//
// var dx = offset.x < 0 ? -offset.x : Math.min( tmpX, 0 );
//
// var dy = offset.y < 0 ? -offset.y : Math.min( tmpY, 0 );
// minder.getRenderContainer().fxTranslate( dx, dy, 100, "easeOutQuint" );
var
nodeX
=
node
.
getRenderContainer
().
getRenderBox
(
'view'
).
x
+
node
.
getRenderContainer
().
getRenderBox
(
'view'
).
width
;
var
paperWidth
=
minder
.
getPaper
().
getWidth
();
console
.
log
(
nodeX
,
paperWidth
);
};
// // minder.getRenderContainer().fxTranslate( dx, dy, 100, "easeOutQuint" );
// };
var
_style
=
{
getCurrentLayoutStyle
:
function
()
{
...
...
@@ -704,9 +700,9 @@ KityMinder.registerModule( "LayoutDefault", function () {
updateConnectAndshIcon
(
set
[
i
]
);
}
if
(
focus
)
{
showNodeInView
(
node
);
}
//
if ( focus ) {
//
showNodeInView( node );
//
}
parent
.
expand
();
var
shicon
=
parent
.
getLayout
().
shicon
;
if
(
shicon
)
shicon
.
switchState
(
true
);
...
...
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