1
0
Fork 0
forked from forgejo/forgejo

Add Image Diff options in Pull Request Diff view (#14450)

Implemented GitHub style image diff
This commit is contained in:
KN4CK3R 2021-02-27 18:25:00 +01:00 committed by GitHub
parent 42118c6bc8
commit 904a26c57c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 421 additions and 74 deletions

View file

@ -20,6 +20,7 @@ import attachTribute from './features/tribute.js';
import createColorPicker from './features/colorpicker.js';
import createDropzone from './features/dropzone.js';
import initTableSort from './features/tablesort.js';
import initImageDiff from './features/imagediff.js';
import ActivityTopAuthors from './components/ActivityTopAuthors.vue';
import {initNotificationsTable, initNotificationCount} from './features/notification.js';
import {initStopwatch} from './features/stopwatch.js';
@ -2693,6 +2694,7 @@ $(document).ready(async () => {
initStopwatch(),
renderMarkdownContent(),
initGithook(),
initImageDiff(),
]);
});