Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/boilerplate-item-type/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export default class BoilerplateItemTypeConfigure extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/boilerplate-item-type/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default class BoilerplateItemType extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/calculator/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export default class Calculator extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/calculator/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export default class Calculator extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/charting/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,14 @@ export default class GraphLinesConfigure extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/charting/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export default class Graphing extends HTMLElement {
this._disconnectMathObserver();
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/drag-in-the-blank/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,14 @@ export default class DragInTheBlank extends HTMLElement {
}, 0);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/drag-in-the-blank/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ export default class DragInTheBlank extends HTMLElement {

if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/drawing-response/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,14 @@ export default class DrawableResponseConfigure extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/drawing-response/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export default class DrawingResponse extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/explicit-constructed-response/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,14 @@ export default class ExplicitConstructedResponse extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/explicit-constructed-response/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ export default class InlineDropdown extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/fraction-model/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export default class FractionModelConfigure extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/fraction-model/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export default class FractionModel extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/graphing-solution-set/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,14 @@ export default class GraphLinesConfigure extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/graphing-solution-set/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export default class Graphing extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/graphing/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,14 @@ export default class GraphLinesConfigure extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/graphing/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export default class Graphing extends HTMLElement {
this._disconnectMathObserver();
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/hotspot/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,14 @@ export default class HotspotConfigure extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/hotspot/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ export default class Hotspot extends HTMLElement {

if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/image-cloze-association/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,14 @@ export default class ImageClozeAssociationConfigure extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/image-cloze-association/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ export default class ImageClozeAssociation extends HTMLElement {

if (this._root) {
this._root.unmount();
this._root = null;
}
}

Expand Down
5 changes: 5 additions & 0 deletions packages/inline-dropdown/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,14 @@ export default class InlineDropdown extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/inline-dropdown/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export default class RootInlineDropdown extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/likert/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,14 @@ export default class Likert extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/likert/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export default class Likert extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/match-list/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export default class MatchList extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/match/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,14 @@ export default class MatchConfigure extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/match/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export default class Match extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/math-inline/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,14 @@ export default class MathInlineConfigure extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/math-inline/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export default class MathInline extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/math-templated/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,14 @@ export default class MathTemplateConfigure extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/math-templated/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export default class MathTemplated extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/matrix/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,14 @@ export default class Matrix extends HTMLElement {
this._root.render(element);
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
1 change: 1 addition & 0 deletions packages/matrix/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export default class Matrix extends HTMLElement {
disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
5 changes: 5 additions & 0 deletions packages/multi-trait-rubric/configure/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,14 @@ export default class MultiTraitRubricElement extends HTMLElement {
}
}

connectedCallback() {
this._render();
}

disconnectedCallback() {
if (this._root) {
this._root.unmount();
this._root = null;
}
}
}
Loading
Loading