Skip to content

Commit

Permalink
bump to 2.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
chinchang committed Dec 12, 2017
1 parent ca77b2f commit e29a9af
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-maker",
"version": "2.9.5",
"version": "2.9.6",
"description": "A blazing fast & offline web playground",
"main": "index.html",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Web Maker",
"version": "2.9.5",
"version": "2.9.6",
"manifest_version": 2,
"description": "Blazing fast & offline playground for your web experiments",
"homepage_url": "https://webmakerapp.com",
Expand Down
2 changes: 1 addition & 1 deletion src/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</head>
<body>
<h3>Settings <span style="opacity: 0.6;font-size:0.7em;">
v2.9.5</span></h3>
v2.9.6</span></h3>
<form name="optionsForm">
<label>
<input type="checkbox" name="preserveLastCode">
Expand Down
2 changes: 1 addition & 1 deletion src/partials/help-modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</svg>
</a>

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

<div>
<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>
Expand Down
8 changes: 6 additions & 2 deletions src/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
(function(alertsService) {
/* eslint-enable no-extra-semi */
var scope = scope || {};
var version = '2.9.4';
var version = '2.9.6';

if (window.DEBUG) {
window.scope = scope;
Expand Down Expand Up @@ -2154,7 +2154,11 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
event.preventDefault();
openSavedItemsPane();
trackEvent('ui', 'openCreationKeyboardShortcut');
} else if ((event.ctrlKey || event.metaKey) && event.shiftKey && event.keyCode === 191) {
} else if (
(event.ctrlKey || event.metaKey) &&
event.shiftKey &&
event.keyCode === 191
) {
// Ctrl/⌘ + Shift + ?
event.preventDefault();
scope.toggleModal(keyboardShortcutsModal);
Expand Down

0 comments on commit e29a9af

Please sign in to comment.