mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 16:38:50 +02:00
remove forgot in 'no more native' a9dd27c
This commit is contained in:
parent
95d5a02170
commit
57f84f0a36
4 changed files with 2 additions and 43 deletions
|
@ -109,14 +109,9 @@ module.exports = function(grunt) {
|
|||
'Gruntfile.js',
|
||||
'__tests__/*.spec.js',
|
||||
'src/js/**/*.js',
|
||||
'src/js/**/**/*.js',
|
||||
'src/levels/**/*.js'
|
||||
'src/js/**/**/*.js'
|
||||
],
|
||||
options: {
|
||||
ignores: [
|
||||
'src/js/**/*.ios.js',
|
||||
'src/js/native_react_views/*.js'
|
||||
],
|
||||
curly: true,
|
||||
// sometimes triple equality is just redundant and unnecessary
|
||||
eqeqeq: false,
|
||||
|
|
|
@ -24,8 +24,7 @@
|
|||
"grunt-react": "^0.12.1",
|
||||
"grunt-shell-spawn": "~0.3.0",
|
||||
"jasmine-node": "~1.12.0",
|
||||
"prompt": "^1.0.0",
|
||||
"react-tools": "^0.13.1"
|
||||
"prompt": "^1.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"backbone": "~1.1.2",
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
var AppStyles = {
|
||||
blueBackground: '#5cbcfc',
|
||||
terminalBackground: '#424242',
|
||||
terminalText: 'rgb(238, 238, 238)',
|
||||
terminalHeader: '#EFEDEE',
|
||||
terminalBorder: '#303030',
|
||||
terminalFontFamily: 'Courier',
|
||||
};
|
||||
|
||||
AppStyles.terminalTextStyle = {
|
||||
color: AppStyles.terminalText,
|
||||
fontFamily: AppStyles.terminalFontFamily,
|
||||
fontWeight: 'bold',
|
||||
};
|
||||
|
||||
module.exports = AppStyles;
|
|
@ -1,19 +0,0 @@
|
|||
var assign = require('object-assign');
|
||||
var keyMirror = require('../util/keyMirror');
|
||||
|
||||
module.exports = keyMirror({
|
||||
NUX: null,
|
||||
LOADING: null,
|
||||
SEQUENCE_SELECT: null,
|
||||
LEVEL_SELECT: null,
|
||||
});
|
||||
|
||||
module.exports.getRouteWithParams = function(id, params) {
|
||||
return assign({id: id}, params);
|
||||
};
|
||||
|
||||
module.exports.getRouteForID = function(id) {
|
||||
return {
|
||||
id: id,
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue