mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-13 18:16:19 +02:00
bump to 2.9.6
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "web-maker",
|
"name": "web-maker",
|
||||||
"version": "2.9.5",
|
"version": "2.9.6",
|
||||||
"description": "A blazing fast & offline web playground",
|
"description": "A blazing fast & offline web playground",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Web Maker",
|
"name": "Web Maker",
|
||||||
"version": "2.9.5",
|
"version": "2.9.6",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "Blazing fast & offline playground for your web experiments",
|
"description": "Blazing fast & offline playground for your web experiments",
|
||||||
"homepage_url": "https://webmakerapp.com",
|
"homepage_url": "https://webmakerapp.com",
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h3>Settings <span style="opacity: 0.6;font-size:0.7em;">
|
<h3>Settings <span style="opacity: 0.6;font-size:0.7em;">
|
||||||
v2.9.5</span></h3>
|
v2.9.6</span></h3>
|
||||||
<form name="optionsForm">
|
<form name="optionsForm">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="preserveLastCode">
|
<input type="checkbox" name="preserveLastCode">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</a>
|
</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>
|
<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>
|
<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>
|
||||||
|
@ -13,7 +13,7 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
|
|||||||
(function(alertsService) {
|
(function(alertsService) {
|
||||||
/* eslint-enable no-extra-semi */
|
/* eslint-enable no-extra-semi */
|
||||||
var scope = scope || {};
|
var scope = scope || {};
|
||||||
var version = '2.9.4';
|
var version = '2.9.6';
|
||||||
|
|
||||||
if (window.DEBUG) {
|
if (window.DEBUG) {
|
||||||
window.scope = scope;
|
window.scope = scope;
|
||||||
@ -2154,7 +2154,11 @@ globalConsoleContainerEl, externalLibrarySearchInput, keyboardShortcutsModal
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
openSavedItemsPane();
|
openSavedItemsPane();
|
||||||
trackEvent('ui', 'openCreationKeyboardShortcut');
|
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 + ?
|
// Ctrl/⌘ + Shift + ?
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
scope.toggleModal(keyboardShortcutsModal);
|
scope.toggleModal(keyboardShortcutsModal);
|
||||||
|
Reference in New Issue
Block a user