comparison Applications/StoneWebViewer/WebApplication/index.html @ 1555:b894072b9e2f

static JavaScript resources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Aug 2020 18:58:23 +0200
parents 6d14ed6163b1
children 8898f8f755c8
comparison
equal deleted inserted replaced
1554:6d14ed6163b1 1555:b894072b9e2f
6 <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" /> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
7 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" /> 7 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
8 <meta name="apple-mobile-web-app-capable" content="yes" /> 8 <meta name="apple-mobile-web-app-capable" content="yes" />
9 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> 9 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
10 <link rel="icon" href="data:;base64,iVBORw0KGgo="> 10 <link rel="icon" href="data:;base64,iVBORw0KGgo=">
11 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"> 11
12 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.css"> 12 <link rel="stylesheet" href="css/all.css"> <!-- Font Awesome -->
13 <link rel="stylesheet" href="css/bootstrap.css">
13 <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> 14 <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
15
14 <link rel="stylesheet" href="app.css"> 16 <link rel="stylesheet" href="app.css">
15 17
16 <!-- https://stackoverflow.com/a/16863182/881731 --> 18 <!-- https://stackoverflow.com/a/16863182/881731 -->
17 <style> 19 <style>
18 .tooltip { 20 .tooltip {
308 </button> 310 </button>
309 </div> 311 </div>
310 312
311 <div class="ng-scope inline-object"> 313 <div class="ng-scope inline-object">
312 <button class="wvButton--underline text-center" id="windowing-popover"> 314 <button class="wvButton--underline text-center" id="windowing-popover">
313 <i class="fa fa-sun-o"></i> 315 <i class="fa fa-sun"></i>
314 </button> 316 </button>
315 </div> 317 </div>
316 318
317 <div class="ng-scope inline-object"> 319 <div class="ng-scope inline-object">
318 <button class="wvButton--underline text-center" v-on:click="FlipX()"> 320 <button class="wvButton--underline text-center" v-on:click="FlipX()">
319 <i class="fas fa-exchange-alt"></i>X 321 <i class="fas fa-exchange-alt"></i>
320 </button> 322 </button>
321 </div> 323 </div>
322 324
323 <div class="ng-scope inline-object"> 325 <div class="ng-scope inline-object">
324 <button class="wvButton--underline text-center" v-on:click="FlipY()"> 326 <button class="wvButton--underline text-center" v-on:click="FlipY()">
325 <i class="fa fa-exchange-alt fa-rotate-90"></i>Y 327 <i class="fas fa-exchange-alt fa-rotate-90"></i>
326 </button> 328 </button>
327 </div> 329 </div>
328 330
329 <div class="ng-scope inline-object"> 331 <div class="ng-scope inline-object">
330 <button class="wvButton--underline text-center" 332 <button class="wvButton--underline text-center"
544 </div> 546 </div>
545 </div> 547 </div>
546 </script> 548 </script>
547 549
548 550
549 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script> 551 <script src="js/jquery-3.4.1.min.js"></script>
550 <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.js"></script> 552 <script src="js/bootstrap.min.js"></script>
551 <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.js"></script> 553 <script src="js/vue.min.js"></script>
552 <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.js"></script> 554 <script src="js/axios.min.js"></script>
553 555
554 <script src="stone.js"></script> 556 <script src="stone.js"></script>
555 <script src="app.js"></script> 557 <script src="app.js"></script>
556 </body> 558 </body>
557 </html> 559 </html>