Some minor fixes
This commit is contained in:
parent
b7b00db726
commit
9534973faa
@ -1,17 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0'>
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||
Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
|
@ -29,7 +29,8 @@ export default {
|
||||
bgSound: null,
|
||||
soundsLoaded: 0,
|
||||
errorText: null,
|
||||
columnWidth: 6
|
||||
columnWidth: 6,
|
||||
fullscreenRequested: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@ -40,6 +41,20 @@ export default {
|
||||
methods: {
|
||||
play(sampleId) {
|
||||
|
||||
if (!this.fullscreenRequested) {
|
||||
const elem = document.documentElement
|
||||
|
||||
if (elem.requestFullscreen) {
|
||||
elem.requestFullscreen();
|
||||
} else if (elem.webkitRequestFullscreen) { /* Safari */
|
||||
elem.webkitRequestFullscreen();
|
||||
} else if (elem.msRequestFullscreen) { /* IE11 */
|
||||
elem.msRequestFullscreen();
|
||||
}
|
||||
|
||||
this.fullscreenRequested = true
|
||||
}
|
||||
|
||||
const sample = this.availableSounds[sampleId].howl
|
||||
|
||||
if (sample.playing()) {
|
||||
|
Loading…
Reference in New Issue
Block a user