1
0
Форкнуть 0
vsts-extension-integer-control/index.html

30 строки
711 B
HTML

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