* Don't override library builds * Don't override libraries on build * Enhance working blockNumber display
		
			
				
	
	
		
			37 lines
		
	
	
		
			956 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			956 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta name="viewport" content="width=device-width">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
 | |
|     <title>dev::Parity.js</title>
 | |
|     <script src="/parity-utils/parity.js"></script>
 | |
|     <style>
 | |
|       .box {
 | |
|         font-size: 1.5em;
 | |
|         text-align: center;
 | |
|         border-radius: 0.5em;
 | |
|         background: #eee;
 | |
|         padding: 1em;
 | |
|         margin: 1em;
 | |
|       }
 | |
|     </style>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="box">
 | |
|       best block #<span id="blockNumber">unknown</span>
 | |
|     </div>
 | |
|     <script>
 | |
|       window.parity.api.subscribe('eth_blockNumber', function (error, blockNumber) {
 | |
|         if (error) {
 | |
|           console.log('error', error);
 | |
|           return;
 | |
|         }
 | |
| 
 | |
|         document.getElementById('blockNumber').innerHTML = blockNumber.toFormat(0);
 | |
|       });
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |