mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-28 03:56:23 -07:00
14 lines
352 B
TypeScript
Executable file
14 lines
352 B
TypeScript
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: any) {
|
|
// throw err;
|
|
return err;
|
|
};
|
|
|
|
|
|
export const downArrow = "▼";
|
|
export const upArrow = "▲";
|