File tree Expand file tree Collapse file tree 3 files changed +1
-20
lines changed Expand file tree Collapse file tree 3 files changed +1
-20
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ const targets: string[] = [
2121 "pizzaz-carousel" ,
2222 "pizzaz-list" ,
2323 "pizzaz-albums" ,
24- "pizzaz-video" ,
2524] ;
2625const builtNames : string [ ] = [ ] ;
2726
Original file line number Diff line number Diff line change @@ -121,15 +121,6 @@ const widgets: PizzazWidget[] = [
121121 html : readWidgetHtml ( "pizzaz-list" ) ,
122122 responseText : "Rendered a pizza list!" ,
123123 } ,
124- {
125- id : "pizza-video" ,
126- title : "Show Pizza Video" ,
127- templateUri : "ui://widget/pizza-video.html" ,
128- invoking : "Hand-tossing a video" ,
129- invoked : "Served a fresh video" ,
130- html : readWidgetHtml ( "pizzaz-video" ) ,
131- responseText : "Rendered a pizza video!" ,
132- } ,
133124] ;
134125
135126const widgetsById = new Map < string , PizzazWidget > ( ) ;
Original file line number Diff line number Diff line change @@ -86,16 +86,7 @@ def _load_widget_html(component_name: str) -> str:
8686 invoked = "Served a fresh list" ,
8787 html = _load_widget_html ("pizzaz-list" ),
8888 response_text = "Rendered a pizza list!" ,
89- ),
90- PizzazWidget (
91- identifier = "pizza-video" ,
92- title = "Show Pizza Video" ,
93- template_uri = "ui://widget/pizza-video.html" ,
94- invoking = "Hand-tossing a video" ,
95- invoked = "Served a fresh video" ,
96- html = _load_widget_html ("pizzaz-video" ),
97- response_text = "Rendered a pizza video!" ,
98- ),
89+ )
9990]
10091
10192
You can’t perform that action at this time.
0 commit comments