diff --git a/CHANGELOG.md b/CHANGELOG.md index d44272a..70fc7f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/app/public/js/nodes.js b/app/public/js/nodes.js index 7b99d39..186dcd3 100644 --- a/app/public/js/nodes.js +++ b/app/public/js/nodes.js @@ -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(); @@ -227,7 +227,7 @@ ready( () => { // // . . . . . . . . . . . // var checkinfo = document.createElement('button'); // checkinfo.id = 'checkinfo'; - // checkinfo.innerText = 'Check'; + // checkinfo.textContent = 'Check'; // updatediv.appendChild(checkinfo); // checkinfo.addEventListener('click', (ev) => { @@ -235,7 +235,7 @@ ready( () => { // . . . . . . . . . . . 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);