1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-07-13 09:12:43 +08:00

Set default layout to "None" when on non-Mac device (#133)

Issue #131
This commit is contained in:
Michael Irwin 2017-05-04 21:12:45 -04:00 committed by Marcos Nils
parent 0ff568a081
commit 9840e7ab8e

View File

@ -460,7 +460,7 @@
function getDefaultShortcutPrefixName() {
if (window.navigator.platform.toUpperCase().indexOf('MAC') >= 0)
return "Mac OSX";
return null;
return "None";
}
}])
.service('TerminalService', ['$window', function($window) {