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

30 строки
711 B
HTML
Исходник Обычный вид История

2016-08-10 23:54:13 +03:00
<!DOCTYPE html>
<html lang="en" style="height:100%">
2016-08-10 23:54:13 +03:00
<head>
<meta charset="utf-8" />
<!-- VSS Framework -->
<script src="scripts/VSS.SDK.min.js"></script>
2016-08-10 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%">
<script>
2016-08-10 23:54:13 +03:00
VSS.init({
explicitNotifyLoaded: true,
2016-10-01 00:15:49 +03:00
usePlatformScripts: true,
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
VSS.require(["scripts/app"], function () {
2016-08-10 23:54:13 +03:00
// loading succeeded
VSS.notifyLoadSucceeded();
});
</script>
</body>
</html>