repo.or.cz
/
gitter.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Gitter migration: Point people to app.gitter.im (rollout pt. 1)
[gitter.git]
/
public
/
js
/
utils
/
platformDetect.js
blob
e5cad6ba0eed196d7eb16a4323cfa856968a3ccc
1
'use strict';
2
3
module.exports = (function() {
4
return function() {
5
var stringToTest = navigator.platform;
6
if (stringToTest.indexOf('Mac') > -1) return 'Mac';
7
if (stringToTest.indexOf('Win') > -1) return 'Windows';
8
if (stringToTest.indexOf('Linux') > -1) return 'Linux';
9
};
10
})();