Prod buildout

This commit is contained in:
James Barnsley
2017-10-31 08:31:43 +13:00
parent b548fda746
commit 9179cbcd93
5 changed files with 17 additions and 17 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@
// Release details
// These are automatically injected by build.sh
var build = "1509391125";
var build = "1509391801";
var version = "3.6.1";
// Construct the script tag

View File

@ -133,7 +133,7 @@ class App extends React.Component{
this.props.mopidyActions.play();
this.props.uiActions.createNotification('play', 'shortcut', 'shortcut');
}
break
break;
case 27: // esc
if (this.props.dragger && this.props.dragger.dragging){
@ -142,7 +142,7 @@ class App extends React.Component{
if (this.props.modal){
this.props.uiActions.closeModal();
}
break
break;
case 40: // down
if ((e.ctrlKey || e.metaKey) && e.shiftKey){
@ -162,7 +162,7 @@ class App extends React.Component{
this.props.uiActions.createNotification('volume-down', 'shortcut', 'shortcut');
}
}
break
break;
case 38: // up
if ((e.ctrlKey || e.metaKey) && e.shiftKey){
@ -185,7 +185,7 @@ class App extends React.Component{
this.props.uiActions.createNotification('volume-up', 'shortcut', 'shortcut');
}
}
break
break;
case 37: // left
if ((e.ctrlKey || e.metaKey) && e.shiftKey){
@ -199,7 +199,7 @@ class App extends React.Component{
this.props.mopidyActions.previous();
this.props.uiActions.createNotification('step-backward', 'shortcut', 'shortcut');
}
break
break;
case 39: // right
if ((e.ctrlKey || e.metaKey) && e.shiftKey){
@ -209,7 +209,7 @@ class App extends React.Component{
this.props.mopidyActions.next();
this.props.uiActions.createNotification('step-forward', 'shortcut', 'shortcut');
}
break
break;
case 70: // F
if ((e.ctrlKey || e.metaKey) && e.shiftKey){
@ -219,7 +219,7 @@ class App extends React.Component{
this.props.uiActions.openModal('kiosk_mode');
}
}
break
break;
}
}