Common Name: Game & Watch Gallery (USA) (SGB Enhanced)
Patch name: Game & Watch Gallery - Pocket.ips
MD5: d5081250257e0dafcb8fe8720fcb9f28
Language: English
Wikipedia
Link to patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.menu { | |
overflow: hidden; | |
} | |
/* Enable scroll on hover */ | |
.menu:hover { | |
overflow: auto; | |
} | |
/* Enable scroll on focus */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.menu { | |
overflow: hidden; | |
} | |
/* Enable scroll on hover OR focus */ | |
.menu:hover, .menu:focus-within { | |
overflow: auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Applies to any element that has | |
mydiv as a class OR myotherdiv as an id | |
*/ | |
.mydiv, #myotherdiv { | |
background-color: red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Applies to all input elements that are being focused */ | |
input:focus { | |
border-color: blue; | |
} | |
/* Applies to all buttons that are hovered over */ | |
button:hover { | |
border-color: red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { subscribe } from 'spaceace'; | |
import { renderApp } from './renderApp'; | |
import { rootSpace } from './rootSpace'; | |
renderApp(rootSpace); | |
subscribe(rootSpace, ({ newSpace }) => { | |
// executed whenever rootSpace is updated | |
// rootSpace is immutable, newSpace is the updated version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const handleRemove = ({ merge, space }, itemToBeRemoved) => { | |
merge({ | |
items: space.items.filter(item => item !== itemToBeRemoved) | |
}); | |
}; | |
export const ShoppingCart = ({ space }) => ( | |
<div> | |
<ul> | |
{space.items.map(item => ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fetchPizza } from '../apiCalls'; | |
/* | |
handleSubmit is a custom action. | |
The first parameter is provided by SpaceAce. | |
The remaining parameters are passed-through | |
which in this case consists of React's event object | |
*/ | |
const handleSubmit = async ({ space, merge }, event) => { | |
event.preventDefault(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const PizzaForm = ({ space }) => ( | |
<form> | |
<label>Name</label> | |
<input | |
type="text" | |
value={space.name || ''} | |
onChange={space('name')} // Whenever user types, `space.name` is updated | |
/> | |
<label>Do you like pizza?</label> | |
<input |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Space, { subscribe } from 'spaceace'; | |
const space = new Space({ | |
appName: "SpaceAce demoe", | |
user: { name: 'Jon', level: 9001 } | |
}); | |
subscribe(space, ({ newSpace, causedBy }) => { | |
console.log(`State updated by ${causedBy}`); | |
ReactDOM.render( |
NewerOlder