Advertisement
web-fx

layout-1.0.1.js

Jan 16th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. /* layout.js - PUBLIC DOMAIN RELEASE - VERSION 1.0.1 - https://pastebin.com/guf7ifcL */
  2. var Layout = new function ( ) {
  3.  
  4.  
  5.  
  6.  
  7. document.write ( '<link rel="stylesheet" href="/style/shared/layout/layout.min.css?nocache=' + ( new Date() ).getTime() + '" />' );
  8.  
  9.  
  10.  
  11.  
  12. this.Top = function ( ) {
  13.  
  14.  
  15. var Output = '';
  16.  
  17. Output += 'Top';
  18.  
  19.  
  20.  
  21.  
  22. document.write ( Output );
  23.  
  24.  
  25.  
  26.  
  27. }
  28.  
  29.  
  30.  
  31.  
  32. this.Bottom = function ( ) {
  33.  
  34.  
  35. var Output = '';
  36.  
  37. Output += 'Bottom';
  38.  
  39.  
  40.  
  41.  
  42. document.write( Output );
  43.  
  44.  
  45.  
  46.  
  47. }
  48.  
  49.  
  50.  
  51.  
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement