Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧹 Refactor id's and data-cy's to underscore #5584

Merged
merged 31 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9623d2f
all id and data-cy in html to underscore
Annelein May 30, 2024
ac00c9a
typescript to underscore
Annelein May 30, 2024
3c11252
# to underscore
Annelein May 30, 2024
85a50b1
runsovertime
Annelein May 30, 2024
55de53b
🤖 Automatically update generated files
Annelein May 30, 2024
aead5c6
Merge branch 'main' into underscore
Annelein May 30, 2024
08559e6
only opened documents were searched...
Annelein May 30, 2024
f8ecbc3
🤖 Automatically update generated files
Annelein May 30, 2024
155f074
few tests
Annelein May 30, 2024
cde0593
few cypress tests
Annelein May 30, 2024
6dd29d1
Merge branch 'underscore' of https://github.com/hedyorg/hedy into und…
Annelein May 30, 2024
08a2107
Merge branch 'main' into underscore
Annelein Jun 3, 2024
6827850
Merge branch 'main' into underscore
Annelein Jun 3, 2024
165fbe6
more underscores
Annelein Jun 3, 2024
d192e35
small mistake
Annelein Jun 3, 2024
2610d9b
fix a few mistakes
Annelein Jun 3, 2024
d0b1d54
cypress test fix
Annelein Jun 3, 2024
9e7a7a8
fixing cypress tests
Annelein Jun 4, 2024
ecdc76a
Merge branch 'main' into underscore
Annelein Jun 4, 2024
a6b9699
🤖 Automatically update generated files
Annelein Jun 4, 2024
25f844c
last cypress test fix
Annelein Jun 4, 2024
1bfe330
🤖 Automatically update generated files
Annelein Jun 4, 2024
0961e28
runs_over_time
Annelein Jun 4, 2024
4b84464
Merge branch 'underscore' of https://github.com/hedyorg/hedy into und…
Annelein Jun 4, 2024
c8a64d8
🤖 Automatically update generated files
Annelein Jun 4, 2024
e395cfb
user activity buttons to underscore
Annelein Jun 4, 2024
d4e4c20
Merge branch 'underscore' of https://github.com/hedyorg/hedy into und…
Annelein Jun 4, 2024
02309af
.speaker_controls-
Annelein Jun 4, 2024
7467c90
.speaker_controls-
Annelein Jun 4, 2024
ba2f94e
run_over_time
Annelein Jun 4, 2024
9a68f7d
🤖 Automatically update generated files
Annelein Jun 4, 2024
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
4 changes: 2 additions & 2 deletions static/js/admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export function initializeAdminUserPage(_options: InitializeAdminUsersPageOption
}
});

$('.admin-pagination-btn').click(function(ev) {
$('.admin_pagination_btn').click(function(ev) {
// Copy the token into the hidden input field, then submit the form
var token = $(ev.target).data('page_token');
console.log(token);
$('#hidden-page-input').attr('value', token);
$('#hidden_page_input').attr('value', token);
$('#filterform').submit();
});
}
2 changes: 1 addition & 1 deletion static/js/adventure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let $editor: ClassicEditor;
let keywordHasAlert: Map<string, boolean> = new Map()

export async function initializeCustomAdventurePage(_options: InitializeCustomizeAdventurePage) {
const editorContainer = document.querySelector('#adventure-editor') as HTMLElement;
const editorContainer = document.querySelector('#adventure_editor') as HTMLElement;
// Initialize the editor with the default language
let lang = document.querySelector('#languages_dropdown> .option.selected')!.getAttribute('data-value') as string
const TRADUCTIONS = convert(TRADUCTION_IMPORT) as Map<string, Map<string,string>>;
Expand Down
128 changes: 64 additions & 64 deletions static/js/app.ts

Large diffs are not rendered by default.

Loading
Loading