This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# Parent 994a8d6eccbcdc6106794705bd77e3ac5f031be2 | |
diff --git a/dom/animation/Animation.cpp b/dom/animation/Animation.cpp | |
--- a/dom/animation/Animation.cpp | |
+++ b/dom/animation/Animation.cpp | |
@@ -391,11 +391,11 @@ Animation::SetPlaybackRate(double aPlayb | |
} | |
// https://drafts.csswg.org/web-animations/#seamlessly-update-the-playback-rate |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<meta charset=utf-8> | |
<title>Notes example</title> | |
<script src="https://unpkg.com/react@%5E16.5.0/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom@%5E16.5.0/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/prop-types@%5E15.6/prop-types.js"></script> | |
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> | |
<style> | |
:root { | |
--yellow-background: hsl(54, 100%, 90.2%); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<meta charset=utf-8> | |
<style> | |
div { | |
width: 200px; | |
height: 200px; | |
background: orange; | |
} | |
</style> | |
<div id=div></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/popup.ts b/src/popup.ts | |
index ca9d850..12b70da 100644 | |
--- a/src/popup.ts | |
+++ b/src/popup.ts | |
@@ -1,4 +1,8 @@ | |
-import { KanjiResult, NameTranslation } from '@birchill/hikibiki-data'; | |
+import { | |
+ KanjiResult, | |
+ MiscType, | |
+ NameTranslation, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/popup.ts b/src/popup.ts | |
index ca9d850..1272482 100644 | |
--- a/src/popup.ts | |
+++ b/src/popup.ts | |
@@ -449,6 +449,39 @@ function renderDefinitions(entry: WordResult, options: PopupOptions) { | |
if (entry.s.length === 1) { | |
definitionsDiv.append(renderSense(entry.s[0], options)); | |
} else { | |
+ // Extract any misc labels that apply to the whole set of definitions | |
+ let commonMisc = entry.s[0].misc; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
import { getTrustedMarkdownProcessor } from '@utils/markdown'; | |
export type Props = { | |
content: string; | |
path?: string; | |
}; | |
const html = await (await getTrustedMarkdownProcessor()).process({ | |
path: Astro.props.path, |
OlderNewer