that'll do
This commit is contained in:
@@ -15,7 +15,7 @@ function Mnml(args) {
|
||||
instance,
|
||||
} = args;
|
||||
|
||||
const rotateClass = (game || instance) && window.innerWidth < window.innerHeight
|
||||
const rotateClass = (game || instance) && window.innerHeight < 600 && window.innerWidth < window.innerHeight
|
||||
? 'show'
|
||||
: '';
|
||||
|
||||
|
||||
@@ -3,10 +3,7 @@ const { connect } = require('preact-redux');
|
||||
const reactStringReplace = require('react-string-replace');
|
||||
const countBy = require('lodash/countBy');
|
||||
|
||||
const specThresholds = require('./vbox.info.thresholds');
|
||||
const { INFO } = require('./../constants');
|
||||
const { convertItem, removeTier } = require('../utils');
|
||||
const { tutorialStage } = require('../tutorial.utils');
|
||||
const shapes = require('./shapes');
|
||||
|
||||
const actions = require('../actions');
|
||||
|
||||
@@ -3,6 +3,7 @@ const range = require('lodash/range');
|
||||
const shapes = require('./shapes');
|
||||
|
||||
function specThresholds(player, fullInfo, info) {
|
||||
if (!info) return false;
|
||||
let red = 0;
|
||||
let blue = 0;
|
||||
let green = 0;
|
||||
|
||||
Reference in New Issue
Block a user