summaryrefslogtreecommitdiff
path: root/app/client/modules
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-18 14:48:26 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-18 14:48:26 +0200
commit898dd4425320d632fc53d28068db334700a64024 (patch)
tree21f9ec0eccb75d48b3fbf09650821528d8212f84 /app/client/modules
parenteb3030ed0ad5aa93b99d237867480c989369930c (diff)
img ops!!
Diffstat (limited to 'app/client/modules')
-rw-r--r--app/client/modules/pix2pixhd/index.js4
-rw-r--r--app/client/modules/samplernn/index.js8
2 files changed, 2 insertions, 10 deletions
diff --git a/app/client/modules/pix2pixhd/index.js b/app/client/modules/pix2pixhd/index.js
index 331fe01..75c4d7f 100644
--- a/app/client/modules/pix2pixhd/index.js
+++ b/app/client/modules/pix2pixhd/index.js
@@ -12,11 +12,11 @@ import Pix2PixHDLive from './views/pix2pixhd.live'
class router {
componentWillMount(){
actions.system.changeTool('pix2pixhd')
- document.body.style.backgroundImage = 'linear-gradient(' + (util.randint(40)+40) + 'deg, #fde, #ffe)'
+ document.body.style.backgroundImage = 'linear-gradient(' + (util.randint(40)+40) + 'deg, #def, #dfe)'
}
componentWillReceiveProps(){
actions.system.changeTool('pix2pixhd')
- document.body.style.backgroundImage = 'linear-gradient(' + (util.randint(40)+40) + 'deg, #fde, #ffe)'
+ document.body.style.backgroundImage = 'linear-gradient(' + (util.randint(40)+40) + 'deg, #def, #dfe)'
}
render(){
return (
diff --git a/app/client/modules/samplernn/index.js b/app/client/modules/samplernn/index.js
index 85c99e4..fb611cb 100644
--- a/app/client/modules/samplernn/index.js
+++ b/app/client/modules/samplernn/index.js
@@ -41,14 +41,6 @@ function links(){
{ url: '/samplernn/graph/', name: 'graph' },
{ url: '/samplernn/results/', name: 'results' },
]
- return (
- <span>
- <span><Link to="/samplernn/new/">new</Link></span>
- <span><Link to="/samplernn/datasets/">datasets</Link></span>
- <span><Link to="/samplernn/graph/">graph</Link></span>
- <span><Link to="/samplernn/results/">results</Link></span>
- </span>
- )
}
export default {