Override to return a list of JavaScript files needed by this module. If the return values are relative paths, they will be passed to `RequestHandler.static_url`; otherwise they will be used as-is.
(self)
| 3240 | return None |
| 3241 | |
| 3242 | def javascript_files(self) -> Optional[Iterable[str]]: |
| 3243 | """Override to return a list of JavaScript files needed by this module. |
| 3244 | |
| 3245 | If the return values are relative paths, they will be passed to |
| 3246 | `RequestHandler.static_url`; otherwise they will be used as-is. |
| 3247 | """ |
| 3248 | return None |
| 3249 | |
| 3250 | def embedded_css(self) -> Optional[str]: |
| 3251 | """Override to return a CSS string |