/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/interactions/MusicNotesInput/music-notes-input-interactions.module.ts
56 строк
2 KB
Mosin Shaikh
Fix the Part of #11371 Remove jquery constructs used in angularJS codeRemove jquery constructs - 2 (#23060)
21 дек 2025, 03:06
Не верифицирован
21 дек 2025, 03:06
34ae126
Код
Авторство
О чём код?
// Copyright 2022 The Oppia Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS-IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** * @fileoverview Module for the music notes input interaction. */ import {NgModule} from '@angular/core'; import {MaterialModule} from 'modules/material.module'; import {MusicNotesInputComponent} from './directives/oppia-interactive-music-notes-input.component'; import {TranslateModule} from '@ngx-translate/core'; import {SharedPipesModule} from 'filters/shared-pipes.module'; import {ResponseMusicNotesInput} from './directives/oppia-response-music-notes-input.component'; import {ShortResponseMusicNotesInput} from './directives/oppia-short-response-music-notes-input.component'; import {CommonModule} from '@angular/common'; import {ObjectComponentsModule} from '../../../extensions/objects/object-components.module'; import {DragDropModule} from '@angular/cdk/drag-drop'; @NgModule({ imports: [ SharedPipesModule, CommonModule, MaterialModule, TranslateModule, ObjectComponentsModule, DragDropModule, ], declarations: [ MusicNotesInputComponent, ResponseMusicNotesInput, ShortResponseMusicNotesInput, ], entryComponents: [ MusicNotesInputComponent, ResponseMusicNotesInput, ShortResponseMusicNotesInput, ], exports: [ MusicNotesInputComponent, ResponseMusicNotesInput, ShortResponseMusicNotesInput, ], }) export class MusicNotesInputModule {}