[DE PE SSE mobile] Bug 47749
This commit is contained in:
parent
2a7812bfa3
commit
5c6d736f9a
|
@ -170,7 +170,7 @@ const PageDocumentColorSchemes = props => {
|
||||||
{
|
{
|
||||||
allSchemes ? allSchemes.map((scheme, index) => {
|
allSchemes ? allSchemes.map((scheme, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem radio={true} className="color-schemes-menu" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
<ListItem radio={true} className="color-schemes-menu no-fastclick" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
||||||
onChange={() => {
|
onChange={() => {
|
||||||
if(index !== curScheme) {
|
if(index !== curScheme) {
|
||||||
setScheme(index);
|
setScheme(index);
|
||||||
|
|
|
@ -46,7 +46,7 @@ const PagePresentationColorSchemes = props => {
|
||||||
{
|
{
|
||||||
allSchemes ? allSchemes.map((scheme, index) => {
|
allSchemes ? allSchemes.map((scheme, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem radio={true} className="color-schemes-menu" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
<ListItem radio={true} className="color-schemes-menu no-fastclick" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
||||||
onChange={() => {
|
onChange={() => {
|
||||||
if(index !== curScheme) {
|
if(index !== curScheme) {
|
||||||
setScheme(index);
|
setScheme(index);
|
||||||
|
|
|
@ -19,7 +19,7 @@ const PageSpreadsheetColorSchemes = props => {
|
||||||
{
|
{
|
||||||
allSchemes ? allSchemes.map((scheme, index) => {
|
allSchemes ? allSchemes.map((scheme, index) => {
|
||||||
return (
|
return (
|
||||||
<ListItem radio={true} className="color-schemes-menu" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
<ListItem radio={true} className="color-schemes-menu no-fastclick" key={index} title={scheme.get_name()} checked={stateScheme === index}
|
||||||
onChange={() => {
|
onChange={() => {
|
||||||
if(index !== curScheme) {
|
if(index !== curScheme) {
|
||||||
setScheme(index);
|
setScheme(index);
|
||||||
|
|
Loading…
Reference in a new issue