-
Notifications
You must be signed in to change notification settings - Fork 0
/
recentlyViewedGroup.html
36 lines (31 loc) · 987 Bytes
/
recentlyViewedGroup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<script src="build/VSS.SDK.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles/RecentlyViewed.css">
</head>
<body>
<script type="text/javascript">
// Initialize framework
VSS.init({
explicitNotifyLoaded: true,
usePlatformScripts: true,
usePlatformStyles: true,
moduleLoaderConfig: {
paths: {
"moment": "build/moment.min"
}
}
});
// Load main entry point for extension
VSS.require(["build/RecentlyViewed"], function (RecentlyViewed) {
// Loading succeeded
var recentlyViewedGroupView = new RecentlyViewed.RecentlyViewedGroupView();
recentlyViewedGroupView.initialize();
VSS.notifyLoadSucceeded();
});
</script>
<div class="rv-group"></div>
</body>
</html>