Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
morpheus.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Daria Zenkova
morpheus.js
Commits
8df58137
Commit
8df58137
authored
May 02, 2016
by
Joshua Gould
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
margins
parent
a5bc8adc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
16 deletions
+17
-16
js/morpheus-latest.min.js
js/morpheus-latest.min.js
+3
-3
src/ui/heat_map_toolbar.js
src/ui/heat_map_toolbar.js
+14
-13
No files found.
js/morpheus-latest.min.js
View file @
8df58137
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/ui/heat_map_toolbar.js
View file @
8df58137
...
...
@@ -26,7 +26,7 @@ morpheus.HeatMapToolBar = function (controller) {
searchHtml
.
push
(
'
</ul>
'
);
searchHtml
.
push
(
'
</div>
'
);
// input-group-btn
searchHtml
.
push
(
'
<input type="text" style="border-top:3px solid rgb(127,127,127);width:240px;padding-
buttons
:25px;" class="form-control input-sm" autocomplete="off" name="searchRows">
'
);
.
push
(
'
<input type="text" style="border-top:3px solid rgb(127,127,127);width:240px;padding-
right
:25px;" class="form-control input-sm" autocomplete="off" name="searchRows">
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
<div class="form-group">
'
);
...
...
@@ -45,7 +45,7 @@ morpheus.HeatMapToolBar = function (controller) {
}
if
(
controller
.
options
.
toolbar
.
searchColumns
)
{
searchHtml
.
push
(
'
<div class="form-group" style="margin-
buttons:18
px;"></div>
'
);
// spacer
.
push
(
'
<div class="form-group" style="margin-
right:10
px;"></div>
'
);
// spacer
// search columns
searchHtml
.
push
(
'
<div class="form-group">
'
);
searchHtml
.
push
(
'
<div class="input-group input-group-sm">
'
);
// group
...
...
@@ -61,7 +61,7 @@ morpheus.HeatMapToolBar = function (controller) {
searchHtml
.
push
(
'
</div>
'
);
// input-group-btn
searchHtml
.
push
(
'
<input type="text" style="border-
buttons:4px solid rgb(127,127,127);width:240px;padding-buttons
:25px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchColumns"></div>
'
);
.
push
(
'
<input type="text" style="border-
right:4px solid rgb(127,127,127);width:240px;padding-right
:25px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchColumns"></div>
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
<div class="form-group" style="margin-left:4px;">
'
);
...
...
@@ -80,9 +80,9 @@ morpheus.HeatMapToolBar = function (controller) {
// search values
searchHtml
.
push
(
'
<div name="searchValuesDiv" class="form-group" style="margin-left:1
8
px;">
'
);
.
push
(
'
<div name="searchValuesDiv" class="form-group" style="margin-left:1
0
px;">
'
);
searchHtml
.
push
(
'
<div class="input-group input-group-sm"><span class="input-group-addon">Values</span><input type="text" style="width:240px;padding-
buttons
:25px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchValues"></div>
'
);
.
push
(
'
<div class="input-group input-group-sm"><span class="input-group-addon">Values</span><input type="text" style="width:240px;padding-
right
:25px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchValues"></div>
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
<div class="form-group" style="margin-left:4px;">
'
);
searchHtml
...
...
@@ -91,7 +91,7 @@ morpheus.HeatMapToolBar = function (controller) {
// row dendrogram
searchHtml
.
push
(
'
<div style="display: none; margin-left:1
8
px;" name="searchRowDendrogramWrapper" class="form-group">
'
);
.
push
(
'
<div style="display: none; margin-left:1
0
px;" name="searchRowDendrogramWrapper" class="form-group">
'
);
searchHtml
.
push
(
'
<div class="input-group input-group-sm"><span class="input-group-addon">Row Dendrogram</span><input type="text" style="width:240px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchRowDendrogram"></div>
'
);
searchHtml
...
...
@@ -99,7 +99,7 @@ morpheus.HeatMapToolBar = function (controller) {
searchHtml
.
push
(
'
</div>
'
);
// column dendrogram
searchHtml
.
push
(
'
<div style="display: none; margin-left:1
8
px;" name="searchColumnDendrogramWrapper" class="form-group">
'
);
.
push
(
'
<div style="display: none; margin-left:1
0
px;" name="searchColumnDendrogramWrapper" class="form-group">
'
);
searchHtml
.
push
(
'
<div class="input-group input-group-sm"><span class="input-group-addon">Column Dendrogram</span><input type="text" style="width:240px;" class="form-control input-sm" autocapitalize="off" autocomplete="off" name="searchColumnDendrogram"></div>
'
);
searchHtml
...
...
@@ -108,11 +108,12 @@ morpheus.HeatMapToolBar = function (controller) {
// dimensions
searchHtml
.
push
(
'
<div class="form-group" name="datasetInfoGroup">
'
);
searchHtml
.
push
(
'
<h6 style="display: inline; margin-left:
3
0px;" name="dim"></h6>
'
);
.
push
(
'
<h6 style="display: inline; margin-left:
1
0px;" name="dim"></h6>
'
);
searchHtml
.
push
(
'
<h6 style="display: inline; margin-left:30px;" name="selection"></h6>
'
);
.
push
(
'
<h6 style="display: inline; margin-left:10px; background-color:rgb(182,213,253);"
'
+
'
name="selection"></h6>
'
);
searchHtml
.
push
(
'
</div>
'
);
searchHtml
.
push
(
'
<div name="buttons" style="margin-left:1
8
px;" class="form-group"></div>
'
);
searchHtml
.
push
(
'
<div name="buttons" style="margin-left:1
0
px;" class="form-group"></div>
'
);
$
(
searchHtml
.
join
(
''
)).
appendTo
(
$search
);
if
(
!
controller
.
options
.
toolbar
.
searchValues
)
{
...
...
@@ -880,8 +881,8 @@ morpheus.HeatMapToolBar.prototype = {
var
d
=
p
.
getFullDataset
();
var
f
=
p
.
getSortedFilteredDataset
();
var
text
=
'
showing
'
+
morpheus
.
Util
.
intFormat
(
f
.
getRowCount
())
+
'
of
'
+
morpheus
.
Util
.
intFormat
(
d
.
getRowCount
())
+
'
rows,
'
+
morpheus
.
Util
.
intFormat
(
f
.
getColumnCount
())
+
'
of
'
+
'
/
'
+
morpheus
.
Util
.
intFormat
(
d
.
getRowCount
())
+
'
rows,
'
+
morpheus
.
Util
.
intFormat
(
f
.
getColumnCount
())
+
'
/
'
+
morpheus
.
Util
.
intFormat
(
d
.
getColumnCount
())
+
'
columns
'
;
this
.
$dimensionsLabel
.
html
(
text
);
},
...
...
@@ -893,7 +894,7 @@ morpheus.HeatMapToolBar.prototype = {
if
(
nr
!==
1
)
{
text
.
push
(
'
s
'
);
}
text
.
push
(
'
selected
,
'
);
text
.
push
(
'
,
'
);
text
.
push
(
morpheus
.
Util
.
intFormat
(
nc
)
+
'
column
'
);
if
(
nc
!==
1
)
{
text
.
push
(
'
s
'
);
...
...
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