gyrospring

✒ 0017.0017 global-variables.js Snippet

Aug 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Template = new function ( ) {
  2.  
  3.  
  4.  
  5.  
  6.     document.write ( '<style> @import url( "/style/shared/layout/layout.min.css" ); </style>' );
  7.     // document.write( '<script src="/script/shared/layout/layout.min.js"></script>' );
  8.  
  9.    
  10.  
  11.     this.Top = function ( ) {
  12.  
  13.  
  14.         var Output = '';
  15.  
  16.         Output += '<p>Top</p>';
  17.  
  18.        
  19.         document.write ( Output );
  20.  
  21.  
  22.     }
  23.  
  24.  
  25.  
  26.  
  27.     this.Bottom = function ( ) {
  28.  
  29.  
  30.         var Output = '';
  31.  
  32.         Output += '<p>Bottom</p>';
  33.  
  34.  
  35.         document.write( Output );
  36.  
  37.  
  38.     }
  39.  
  40.  
  41.  
  42.  
  43. }
Add Comment
Please, Sign In to add comment