-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbulkBoardContext.html
49 lines (43 loc) · 2.29 KB
/
bulkBoardContext.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<script type="text/javascript">
var appInsights = window.appInsights || function (config) {
function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = "script", s = "AuthenticatedUserContext", h = "start", c = "stop", l = "Track", a = l + "Event", v = l + "Page", y = u.createElement(o), r, f; y.src = config.url || "https://az416426.vo.msecnd.net/scripts/a/ai.0.js"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = "1.0", r = ["Event", "Exception", "Metric", "PageView", "Trace", "Dependency"]; r.length;)i("track" + r.pop()); return i("set" + s), i("clear" + s), i(h + a), i(c + a), i(h + v), i(c + v), i("flush"), config.disableExceptionTracking || (r = "onerror", i("_" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t["_" + r](config, i, u, e, o), s }), t
}({
instrumentationKey: "41b4ace4-32f4-4d72-aa7a-52867515126f",
disableAjaxTracking: true,
});
window.appInsights = appInsights;
window.start = performance.now()
</script>
<script inline src="dist/scripts/VSS.SDK.min.js"></script>
</head>
<body>
<script type="text/javascript">
// Initialize framework
VSS.init({
explicitNotifyLoaded: true,
usePlatformScripts: true,
configureModuleLoader: true
});
// Load main entry point for extension
VSS.require([
'TFS/Work/RestClient',
'q',
'TFS/WorkItemTracking/RestClient',
'VSS/WebApi/Contracts',
'TFS/WorkItemTracking/Contracts',
'TFS/Core/RestClient',
'TFS/Work/Contracts',
'VSS/Controls',
'VSS/Controls/Combos',
'TFS/WorkItemTracking/Services',
"scripts/bulkBoardContext"], function () {
// Loading succeeded
VSS.notifyLoadSucceeded();
});
</script>
</body>
</html>