Skip to content

Commit

Permalink
Merge pull request #151 from maxwell-k/master
Browse files Browse the repository at this point in the history
Finish renaming console to impressConsole
  • Loading branch information
regebro committed Dec 10, 2017
2 parents e360c8d + edb2431 commit 2371d31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hovercraft/templates/default/js/hovercraft.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (impressConsole) {
impressConsole().registerKeyEvent([72], help, window);

if (impressattrs.hasOwnProperty('auto-console') && impressattrs['auto-console'].value.toLowerCase() === 'true') {
consoleWindow = console().open();
consoleWindow = impressConsole().open();
}
}

Expand Down
2 changes: 1 addition & 1 deletion hovercraft/templates/simple/js/hovercraft.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (impressConsole) {
impressConsole().registerKeyEvent([72], help, window);

if (impressattrs.hasOwnProperty('auto-console') && impressattrs['auto-console'].value.toLowerCase() === 'true') {
consoleWindow = console().open();
consoleWindow = impressConsole().open();
}
}

Expand Down
2 changes: 1 addition & 1 deletion hovercraft/tests/test_data/maximal/js/hovercraft.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if (impressConsole) {
impressConsole().registerKeyEvent([72], help, window);

if (impressattrs.hasOwnProperty('auto-console') && impressattrs['auto-console'].value.toLowerCase() === 'true') {
consoleWindow = console().open();
consoleWindow = impressConsole().open();
}
}

Expand Down

0 comments on commit 2371d31

Please sign in to comment.