This repository was archived by the owner on Sep 10, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
2
2
3
- -- MySQL database for the tracker module, version 1.2.0
3
+ -- MySQL database for the tracker module, version 1.2.1
4
4
5
5
CREATE TABLE IF NOT EXISTS ` tracker_producer` (
6
6
` producer_id` bigint (20 ) NOT NULL AUTO_INCREMENT,
Original file line number Diff line number Diff line change 1
1
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
2
2
3
- -- PostgreSQL database for the tracker module, version 1.2.0
3
+ -- PostgreSQL database for the tracker module, version 1.2.1
4
4
5
5
SET client_encoding = ' UTF8' ;
6
6
SET default_with_oids = FALSE;
Original file line number Diff line number Diff line change 1
1
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
2
2
3
- -- SQLite database for the tracker module, version 1.2.0
3
+ -- SQLite database for the tracker module, version 1.2.1
4
4
5
5
CREATE TABLE IF NOT EXISTS " tracker_producer" (
6
6
" producer_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL ,
Original file line number Diff line number Diff line change @@ -60,9 +60,8 @@ $(document).ready(function () {
60
60
$ ( 'a.visualizeSelected' ) . unbind ( 'click' ) . hide ( ) ;
61
61
}
62
62
63
- /**
64
- * Toggle key metric state
65
- */
63
+
64
+ // Toggle key metric state.
66
65
if ( checked . length >= 1 ) {
67
66
$ ( 'span.keyMetricTogglePlural' ) . html ( checked . length > 1 ? 's' : '' ) ;
68
67
var isKey = $ ( checked [ 0 ] ) . attr ( 'iskey' ) === '1' ;
@@ -93,9 +92,7 @@ $(document).ready(function () {
93
92
}
94
93
} ) ;
95
94
96
- /**
97
- * Set tooltip for key metric icon
98
- */
95
+ // Set tooltip for key metric icon.
99
96
$ ( '.keyMetric' ) . qtip ( {
100
97
'content' : 'This is a key metric'
101
98
} ) ;
Original file line number Diff line number Diff line change @@ -60,4 +60,4 @@ input.selectTrend {
60
60
61
61
.keyMetric {
62
62
float : right ;
63
- }
63
+ }
You can’t perform that action at this time.
0 commit comments