Skip to content

Commit

Permalink
fix buttons in firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
mose committed Feb 22, 2016
1 parent 30368b4 commit 50e7f34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Hieraviz Changelog
========================

### v0.2.0 - wip
- fix button display on firefox

### v0.1.2 - 2016-02-22
- add a way to write custom local facts
- add display of nodes info on node panel
Expand Down
6 changes: 3 additions & 3 deletions app/public/js/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ ready( () => {
// . . . . . . . . . . .
var updateinfo = document.createElement('button');
updateinfo.id = 'updateinfo';
updateinfo.innerText = 'Update';
updateinfo.textContent = 'Update';
updatediv.appendChild(updateinfo);
updateinfo.addEventListener('click', (ev) => {
var fields = get_input();
Expand All @@ -227,15 +227,15 @@ ready( () => {
// // . . . . . . . . . . .
// var checkinfo = document.createElement('button');
// checkinfo.id = 'checkinfo';
// checkinfo.innerText = 'Check';
// checkinfo.textContent = 'Check';
// updatediv.appendChild(checkinfo);
// checkinfo.addEventListener('click', (ev) => {

// });
// . . . . . . . . . . .
var restoreinfo = document.createElement('button');
restoreinfo.id = 'restoreinfo';
restoreinfo.innerText = 'Restore Defaults';
restoreinfo.textContent = 'Restore Defaults';
updatediv.appendChild(restoreinfo);
restoreinfo.addEventListener('click', (ev) => {
clear_input(node);
Expand Down

0 comments on commit 50e7f34

Please sign in to comment.