* build: create profile plugin page * build: add plugins folder to Profile * build: wrap Profile Plugin Page with Plugin Co-authored-by: Jason Wesson <jwesson@2u.com>
9 lines
421 B
JavaScript
9 lines
421 B
JavaScript
// TODO: We expect other plugin types to be added here, such as LTI_PLUGIN and BUILD_TIME_PLUGIN.
|
|
export const IFRAME_PLUGIN = 'IFRAME_PLUGIN'; // loads iframe at the URL, rather than loading a JS file.
|
|
|
|
// Plugin lifecycle events
|
|
export const PLUGIN_MOUNTED = 'PLUGIN_MOUNTED';
|
|
export const PLUGIN_READY = 'PLUGIN_READY';
|
|
export const PLUGIN_UNMOUNTED = 'PLUGIN_UNMOUNTED';
|
|
export const PLUGIN_RESIZE = 'PLUGIN_RESIZE';
|