Feature/#91 watch2gether display chat message character count #93

Merged
Serraniel merged 12 commits from feature/#91-watch2gether-display-chat-message-character-count into develop 2020-10-29 18:09:12 +01:00
2 changed files with 15 additions and 1 deletions
Showing only changes of commit e7a4790970 - Show all commits

View file

@ -0,0 +1,12 @@
import * as core from '../utils/aniwatchCore';
import * as helper from '../utils/helpers';
export function init() {
core.runAfterLoad(() => {
manipulateChatInput();
Serraniel commented 2020-10-25 14:00:01 +01:00 (Migrated from github.com)
Review
  • This is blocked until the changes made in #19 are merged.

However, the rest of the changes should be ready for a first review. But it may be possible this code doesn´t work yet as I cannot test it in the current state.

- [x] This is blocked until the changes made in #19 are merged. However, the rest of the changes should be ready for a first review. But it may be possible this code doesn´t work yet as I cannot test it in the current state.
Serraniel commented 2020-10-28 22:36:42 +01:00 (Migrated from github.com)
Review

Blocking item was merges.

Blocking item was merges.
}, "^/watch2gether/.*$");
}
function manipulateChatInput(){
}

View file

@ -6,6 +6,7 @@ import { initHelpers } from './utils/helpers';
import { init as animeRequests } from './enhancements/animeRequests';
import { init as languageDisplay } from './enhancements/languageDisplay';
import { init as quickSearch } from './enhancements/quickSearch';
import { init as watch2getherChat } from './enhancements/watch2getherChat';
// core
initCore();
@ -16,4 +17,5 @@ initHelpers();
// enhancements
animeRequests();
languageDisplay();
Serraniel commented 2020-10-28 22:39:04 +01:00 (Migrated from github.com)
Review
notifications();
quickSearch();

wooops

```suggestion notifications(); quickSearch(); ``` wooops
quickSearch();
quickSearch();
watch2getherChat();