File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ function connectSubMenu(nonDarwin) {
79
79
80
80
if ( nonDarwin ) {
81
81
subMenu . push ( separator ( ) ) ;
82
- subMenu . push ( quitSubMenu ( 'Exit' ) ) ;
82
+ subMenu . push ( quitSubMenuItem ( 'Exit' ) ) ;
83
83
}
84
84
85
85
return {
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ var path = require('path');
18
18
* When running in electron, we're in `RESOURCES/src/electron`.
19
19
*/
20
20
var RESOURCES = path . resolve ( __dirname , '../../' ) ;
21
+ var SCOUT_ICON_PATH = RESOURCES + '/images/scout.png' ;
21
22
22
23
/**
23
24
* The app's HTML shell which is the output of `./src/index.jade`
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ var HelpPage = View.extend({
23
23
title : {
24
24
deps : [ 'entry.title' ] ,
25
25
fn : function ( ) {
26
- var t = 'MongoDB Compass: Help' ;
26
+ var t = 'MongoDB Compass Help' ;
27
27
if ( this . entry . title ) {
28
28
t += ': ' + this . entry . title ;
29
29
}
Original file line number Diff line number Diff line change 11
11
12
12
.panel {
13
13
position : absolute ;
14
- top : 72 px ;
14
+ top : 0 ;
15
15
left : 0 ;
16
16
bottom : 0 ;
17
17
width : 220px ;
21
21
.panel-title {
22
22
padding : 8px 0 ;
23
23
overflow : auto ;
24
- border-top : 1px solid lighten (@slate1 , 5% );
25
24
border-left : 4px solid transparent ;
26
25
}
27
26
Original file line number Diff line number Diff line change 1
1
.sidebar
2
- .compass-logo
3
2
.panel
4
3
.panel-title
5
4
| Help Topics
You can’t perform that action at this time.
0 commit comments