Skip to content

Tags: githubrespiratory/amphtml

Tags

1905222334000

Toggle 1905222334000's commit message
🐛Fix $SUBSTR macro (ampproject#22443)

1905211840370

Toggle 1905211840370's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix story render service in prerendering. (ampproject#22346)

1905140117570

Toggle 1905140117570's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add dirtyBit support to stored consent value (ampproject#22257)

* add dirtyBit support

* fix unit tests

* introduce consentStateValue to replace consentState

* use form

1905091827220

Toggle 1905091827220's commit message
Revert "♻️Move VariableService to doc level (ampproject#22137)" (ampp…

…roject#22218)

This reverts commit 54afc8c.

1905071607430

Toggle 1905071607430's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added the inabox experiment to the prod config (ampproject#22118)

1905021827420

Toggle 1905021827420's commit message
🐛 fixed-layer: Fix hidden observer init in PWA (ampproject#21976)

* 🐛 fixed-layer: Fix hidden observer init in PWA

Hidden observer fails to init in PWAs because document is assumed
instead of allowing for the possibility of document or shadowRoot. Add
fallbacks for shadowRoot.

Fixes ampproject#21975

* fixed-layer: Simplify doc retrieval

1904301721170

Toggle 1904301721170's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
📖 amp-facebook-comments: Document enforced max `numposts` (ampproject…

…#22068)

Closes ampproject#22062

1904262212040

Toggle 1904262212040's commit message
Issue 22022 fix (ampproject#22023)

* return  fetch promise

* tests

* lint

1904240947200

Toggle 1904240947200's commit message
Inabox host script disallows write action (expanding iframe, etc.) by…

… default. (ampproject#21762)

* Inabox: Host script disallows write action (expanding iframe, etc.) by default.

* Respect the whitelist fully instead of implicitly allowing send-positions

* lint

1904200955460

Toggle 1904200955460's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
🐛 Replace internal version with compile time constant (ampproject#21832)

* Replace internal version with compile time constant

This implements a compile time constant replacement for the AMP Version magic string. This also fixes the last remaining issue with sourcemaps, caused by the old string replace not keeping the same number of chars in the replacement.

```js
// input
import {version} from './internal-version';
version();

// output
"1904010000000"
```

* Clean up nit