mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-27 22:59:51 -05:00
27 lines
961 B
HTML
27 lines
961 B
HTML
<html>
|
|
<head>
|
|
<title>Click Example</title>
|
|
|
|
<!-- Prevent Mobile Zooming -->
|
|
<meta content='True' name='HandheldFriendly' />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0, user-scalable=no">
|
|
|
|
<!-- Prevent Tap Highlight on Windows 8 -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="msapplication-tap-highlight" content="no"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="example.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id='element'>Click Me</div>
|
|
|
|
<div class='elementSet'></div>
|
|
<div class='elementSet'></div>
|
|
<div class='elementSet'></div>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
|
<script id='main' src="build.js"></script>
|
|
</body>
|
|
</html>
|