forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken interaction previews in the exploration editor (oppia#6627)
* fix imports * fix import orders * remove stray comma
- Loading branch information
1 parent
0fb2544
commit 1afa7a2
Showing
6 changed files
with
20 additions
and
24 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
extensions/interactions/DragAndDropSortInput/DragAndDropSortInput.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/DragAndDropSortInputRulesService.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/DragAndDropSortInputValidationService.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/OppiaInteractiveDragAndDropSortInputDirective.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/OppiaResponseDragAndDropSortInputDirective.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/OppiaShortResponseDragAndDropSortInputDirective.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/DragAndDropSortInputRulesService.js"></script> | ||
<script src="/extensions/interactions/DragAndDropSortInput/directives/DragAndDropSortInputValidationService.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<script src="/extensions/interactions/ImageClickInput/directives/ImageClickInputRulesService.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/ImageClickInputValidationService.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/OppiaInteractiveImageClickInputDirective.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/OppiaResponseImageClickInputDirective.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/OppiaShortResponseImageClickInputDirective.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/ImageClickInputRulesService.js"></script> | ||
<script src="/extensions/interactions/ImageClickInput/directives/ImageClickInputValidationService.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
extensions/interactions/ItemSelectionInput/ItemSelectionInput.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<link rel="stylesheet" type="text/css" href="/extensions/interactions/ItemSelectionInput/static/item_selection_input.css"> | ||
|
||
<script src="/extensions/interactions/ItemSelectionInput/directives/ItemSelectionInputRulesService.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/ItemSelectionInputValidationService.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/OppiaInteractiveItemSelectionInputDirective.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/OppiaResponseItemSelectionInputDirective.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/OppiaShortResponseItemSelectionInputDirective.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/ItemSelectionInputRulesService.js"></script> | ||
<script src="/extensions/interactions/ItemSelectionInput/directives/ItemSelectionInputValidationService.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters