2016-08-10 23:54:13 +03:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" style="height:100%">
|
2016-10-12 23:54:13 +03:00
|
|
|
|
|
2016-08-10 23:54:13 +03:00
|
|
|
|
<head>
|
2016-10-12 23:54:13 +03:00
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<!-- VSS Framework -->
|
|
|
|
|
<script src="scripts/VSS.SDK.min.js"></script>
|
2016-08-10 23:54:13 +03:00
|
|
|
|
|
2016-10-12 23:54:13 +03:00
|
|
|
|
<title>Hit Count Control</title>
|
|
|
|
|
<link rel="stylesheet" href="styles/style.css" type="text/css" />
|
2016-08-10 23:54:13 +03:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body style="height:100%">
|
2016-10-12 23:54:13 +03:00
|
|
|
|
<script>
|
2016-08-10 23:54:13 +03:00
|
|
|
|
VSS.init({
|
|
|
|
|
explicitNotifyLoaded: true,
|
2016-10-01 00:15:49 +03:00
|
|
|
|
usePlatformScripts: true,
|
2016-10-12 23:54:13 +03:00
|
|
|
|
usePlatformStyles: true,
|
2016-10-01 00:15:49 +03:00
|
|
|
|
configureModuleLoader: true
|
2016-08-10 23:54:13 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Load main entry point for extension
|
2016-10-12 23:54:13 +03:00
|
|
|
|
VSS.require(["scripts/app"], function () {
|
2016-08-10 23:54:13 +03:00
|
|
|
|
// loading succeeded
|
|
|
|
|
VSS.notifyLoadSucceeded();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
2016-10-12 23:54:13 +03:00
|
|
|
|
|
|
|
|
|
</html>
|