mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
import jwt_decode from "jwt-decode";
|
|
import $ from "jquery"
|
|
|
|
$.post(loginUrl(), {data: "foo"}, (data, xhr) => {
|
|
var decoded = jwt_decode(data);
|
|
$.jGrowl(decoded); // $ MISSING: Alert - only flagged with additional sources
|
|
});
|