mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-07 06:06:23 -07:00
12 lines
330 B
JavaScript
Executable file
12 lines
330 B
JavaScript
Executable file
import jquery from "jquery";
|
|
export default (window.$ = window.jQuery = jquery);
|
|
|
|
// overwrite jQuery's deferred exception hook, because otherwise the sourcemap
|
|
// is useless if AJAX is involved
|
|
jquery.Deferred.exceptionHook = function(err) {
|
|
throw err;
|
|
};
|
|
|
|
|
|
export const downArrow = "▼";
|
|
export const upArrow = "▲";
|