summaryrefslogtreecommitdiff
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/debug_panel.js4
-rw-r--r--ui/app/components/greeter_panel.js2
-rw-r--r--ui/app/components/main_panel/user_section.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/debug_panel.js b/ui/app/components/debug_panel.js
index 7515ba84..5ffd4051 100644
--- a/ui/app/components/debug_panel.js
+++ b/ui/app/components/debug_panel.js
@@ -10,11 +10,11 @@ class DebugPanel extends React.Component {
}
componentDidMount() {
- this.click(window.location.hash.replace('#', ''))
+ //this.click(window.location.hash.replace('#', ''))
}
click(panel_name) {
- window.location.hash = panel_name
+ //window.location.hash = panel_name
App.show(panel_name)
}
diff --git a/ui/app/components/greeter_panel.js b/ui/app/components/greeter_panel.js
index acaf0d57..31403573 100644
--- a/ui/app/components/greeter_panel.js
+++ b/ui/app/components/greeter_panel.js
@@ -31,7 +31,7 @@ export default class GreeterPanel extends React.Component {
<Area position="bottom" type="dark" className="greeter">
<Glyphicon glyph="user" />
&nbsp;
- <a href="#" onClick={this.newAccount.bind(this)}>Create a new account...</a>
+ <a href="javascript:void(0)" onClick={this.newAccount.bind(this)}>Create a new account...</a>
</Area>
</Center>
</div>
diff --git a/ui/app/components/main_panel/user_section.js b/ui/app/components/main_panel/user_section.js
index b792bb43..17e492d7 100644
--- a/ui/app/components/main_panel/user_section.js
+++ b/ui/app/components/main_panel/user_section.js
@@ -97,7 +97,7 @@ export default class UserSection extends React.Component {
/>
<br />
<Glyphicon glyph="user" />&nbsp;
- <a href="#" onClick={App.show.bind(App, 'wizard')}>Create a new account...</a>
+ <a href="javascript:void(0)" onClick={App.show.bind(App, 'wizard')}>Create a new account...</a>
</div>
)
return (