Skip to content

Commit e29a9af

Browse files
committed
bump to 2.9.6
1 parent ca77b2f commit e29a9af

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-maker",
3-
"version": "2.9.5",
3+
"version": "2.9.6",
44
"description": "A blazing fast & offline web playground",
55
"main": "index.html",
66
"devDependencies": {

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Web Maker",
3-
"version": "2.9.5",
3+
"version": "2.9.6",
44
"manifest_version": 2,
55
"description": "Blazing fast & offline playground for your web experiments",
66
"homepage_url": "https://webmakerapp.com",

src/options.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</head>
3030
<body>
3131
<h3>Settings <span style="opacity: 0.6;font-size:0.7em;">
32-
v2.9.5</span></h3>
32+
v2.9.6</span></h3>
3333
<form name="optionsForm">
3434
<label>
3535
<input type="checkbox" name="preserveLastCode">

src/partials/help-modal.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</svg>
55
</a>
66

7-
<h1>Web Maker<small style="font-size:14px;"> v2.9.5</small></h1>
7+
<h1>Web Maker<small style="font-size:14px;"> v2.9.6</small></h1>
88

99
<div>
1010
<p>Made with <span style="margin-right: 8px;">💖</span> & <span style="margin-right: 8px;">🙌</span> by <a href="https://twitter.com/chinchang457" target="_blank">Kushagra Gour</a></p>

src/script.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
1313
(function(alertsService) {
1414
/* eslint-enable no-extra-semi */
1515
var scope = scope || {};
16-
var version = '2.9.4';
16+
var version = '2.9.6';
1717

1818
if (window.DEBUG) {
1919
window.scope = scope;
@@ -2154,7 +2154,11 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
21542154
event.preventDefault();
21552155
openSavedItemsPane();
21562156
trackEvent('ui', 'openCreationKeyboardShortcut');
2157-
} else if ((event.ctrlKey || event.metaKey) && event.shiftKey && event.keyCode === 191) {
2157+
} else if (
2158+
(event.ctrlKey || event.metaKey) &&
2159+
event.shiftKey &&
2160+
event.keyCode === 191
2161+
) {
21582162
// Ctrl/⌘ + Shift + ?
21592163
event.preventDefault();
21602164
scope.toggleModal(keyboardShortcutsModal);

0 commit comments

Comments
 (0)