Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
1j01 committed Jun 26, 2021
1 parent 18a8067 commit a44a078
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 9 deletions.
33 changes: 33 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,57 @@
{
"cSpell.words": [
"ACOT",
"ACOTH",
"ACSC",
"ACSCH",
"ASEC",
"ASECH",
"BINEDITEND",
"BINEDITSTART",
"BINPOS",
"Butterchurn",
"Butterchurn's",
"CENTR",
"CLOSEP",
"Dword",
"EMSCRIPTEN",
"Heisenbug",
"Hilight",
"Konami",
"LSHF",
"MCLEAR",
"MMINUS",
"MPLUS",
"Nand",
"OPENP",
"POWE",
"Qword",
"ROLC",
"RORC",
"RSHF",
"RSHFL",
"Skia",
"TITLEBAR",
"Wasm",
"Whippin",
"asyncify",
"browserfs",
"btns",
"errored",
"fullscreen",
"gitattributes",
"gitignored",
"initialise",
"jspaint",
"milkdrop",
"msapplication",
"msdos",
"mspaint",
"nuget",
"peggys",
"projitems",
"resizer",
"smodel",
"tandard",
"themepack",
"unmaximize",
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#008080">
<meta name="viewport" content="width=device-width, user-scalable=no">
<!-- For Wayback Machine, hopefully get it to save these resources -->
<!-- For WayBack Machine, hopefully get it to save these resources -->
<link rel="prefetch" href="/filesystem-index.json">
<link rel="prefetch" href="/desktop/CREDITS.txt">
<link rel="prefetch" href="/programs/notepad/index.html">
Expand All @@ -45,7 +45,7 @@
<div class="start-menu-titlebar"></div>
<div class="start-menu-content">
<h1 style="font-family: cursive; font-size: 2em;">’S tart</h1>
<h2 style="font-family: cursive; font-size: 1em; color: gray; margin: 0; margin-left: 300px; white-space: nowrap;">’s a straberry tart</h1>
<h2 style="font-family: cursive; font-size: 1em; color: gray; margin: 0; margin-left: 300px; white-space: nowrap;">’s a strawberry tart</h1>
<img src="https://i.postimg.cc/dtxsJq0d/CK1IhDr.gif"/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion programs/calculator/mcalculator/server/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
</div>
<div id="sidebar">
<div id="nav">
<!--ids of nav math classes of panels!!!-->
<!--ids of nav match classes of panels!!!-->
<div id="hspanel" class="nav-item active">
History
<div class="barbelow"></div>
Expand Down
6 changes: 3 additions & 3 deletions programs/calculator/mcalculator/server/public/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function initialise() {
}
document.querySelector('#display > #primary').innerHTML = displayStr;
}
window.setExpressionDisplay = function setExpresionDisplayOverThePrimaryOne(displayStr) {
window.setExpressionDisplay = function setExpressionDisplayOverThePrimaryOne(displayStr) {
this.document.querySelector('#display > #expression').textContent = displayStr;
}
window.Module._load(); //TODO try to asyncify it
Expand Down Expand Up @@ -66,7 +66,7 @@ function initialise() {
* History and Memory unveiling in compact mode
*/

let sidebarUp = 0; //maybe stayes in closure or something
let sidebarUp = 0; //maybe stays in closure or something
window.sidebarDown = function lowersTheSidebarToInitialState() {
let sidebar = this.document.querySelector('#sidebar');
sidebar.style.transform = 'translateY(0)';
Expand Down Expand Up @@ -186,7 +186,7 @@ function initialise() {
panel.prepend(hItem);

}
window.clearHistory = function clearHistoryOfEngineAndclearPanel() {
window.clearHistory = function clearHistoryOfEngineAndClearPanel() {
this.window.Module._clearHs();
let panel = this.document.querySelector('#panel .hspanel');
removeFrom(panel, "button.history-item");
Expand Down
6 changes: 3 additions & 3 deletions src/programs.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ function showScreensaver(iframeSrc) {
};
const keydownHandler = (event)=> {
// Trying to let you change the display or capture the output
// not allowing Ctrl+Printscreen etc. because no modifiers
// not allowing Ctrl+PrintScreen etc. because no modifiers
if (!(["F11", "F12", "ZoomToggle", "PrintScreen", "MediaRecord", "BrightnessDown", "BrightnessUp", "Dimmer"].includes(event.key))) {
event.preventDefault();
event.stopPropagation();
Expand Down Expand Up @@ -508,7 +508,7 @@ var load_winamp_bundle_if_not_loaded = function(includeButterchurn, callback){
if(webamp_bundle_loaded){
callback();
}else{
// TODO: paralellize (if possible)
// TODO: parallelize (if possible)
$.getScript("programs/winamp/lib/webamp.bundle.min.js", ()=> {
if (includeButterchurn) {
$.getScript("programs/winamp/lib/butterchurn.min.js", ()=> {
Expand Down Expand Up @@ -716,7 +716,7 @@ function openWinamp(file_path){
$webamp.hide();
};
winamp_interface.unminimize = ()=> {
// more to the point does this work necsesarilyrdrfsF??
// more to the point does this work necessarily??
$webamp.show();
// $webamp.focus();
};
Expand Down

0 comments on commit a44a078

Please sign in to comment.