Sign in
cobalt
/
cobalt
/
ecb76eb1e58da94893009effbde7ffbb7515f9c6
/
.
/
src
/
cobalt
/
demos
/
content
/
media-element-demo
/
src
/
utils
/
shared_values.ts
blob: 031b96c016c922d73889ba8b4bf7560457bf04ce [
file
] [
log
] [
blame
]
/** This file contains singleton values shared by the application. */
import
{
Observable
}
from
'./observable'
;
export
const
errors
=
new
Observable
<
string
[]>([]);
export
const
isCobalt
=
navigator
.
userAgent
.
indexOf
(
'Cobalt'
)
>=
0
;