Skip to content

Commit

Permalink
revert default: false
Browse files Browse the repository at this point in the history
  • Loading branch information
alanorozco committed Nov 17, 2021
1 parent 8b8ebfe commit a484e1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions extensions/amp-facebook/1.0/base-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ BaseElement['props'] = {
'includeCommentParent': {
attr: 'data-include-comment-parent',
type: 'boolean',
default: false,
},
'showText': {attr: 'data-show-text'},
// -comments
Expand Down
2 changes: 1 addition & 1 deletion extensions/amp-mathml/1.0/base-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BaseElement['Component'] = BentoMathml;

/** @override */
BaseElement['props'] = {
'inline': {attr: 'inline', type: 'boolean'},
'inline': {attr: 'inline', type: 'boolean', default: false},
'formula': {attr: 'data-formula'},
'title': {attr: 'title'},
};
Expand Down
2 changes: 1 addition & 1 deletion extensions/amp-soundcloud/1.0/base-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BaseElement['props'] = {
'playlistId': {attr: 'data-playlistid'},
'secretToken': {attr: 'data-secret-token'},
'trackId': {attr: 'data-trackid'},
'visual': {attr: 'data-visual', type: 'boolean'},
'visual': {attr: 'data-visual', type: 'boolean', default: false},
};

/** @override */
Expand Down

0 comments on commit a484e1a

Please sign in to comment.