Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.  
  5. <!-- Mirrored from leonardosnt.github.io/jar-string-editor/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 18 Nov 2017 23:10:25 GMT -->
  6. <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
  7. <head>
  8. <meta charset="UTF-8">
  9. <title>Jar Splush</title>
  10.  
  11. <link rel="dns-prefetch" href="http://google-analytics.com/">
  12. <link rel="dns-prefetch" href="http://www.google-analytics.com/">
  13. <link rel="dns-prefetch" href="http://ajax.googleapis.com/">
  14. <link rel="dns-prefetch" href="http://cdnjs.cloudflare.com/">
  15.  
  16. <meta name="author" content="leonardosnt (leonrdsnt[at]gmail[dot]com)">
  17. <meta name="description" content="Jar String Editor">
  18. <meta name="keywords" content="jar, string, editor, class, java">
  19.  
  20. <link rel="stylesheet" href="index.css">
  21. <link rel="stylesheet" href="../../cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css">
  22.  
  23. <script src="../../ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js" defer></script>
  24. <script src="../../cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js" defer></script>
  25. </head>
  26.  
  27. <body>
  28. <div class="container">
  29. <div class="row">
  30. <h5 id="status-label" data-i18n-text="select_the_file">Select the file (.jar)</h5>
  31. <h6 data-i18n-text="select_the_file_label">The file will be loaded in your browser, try to not select a huge file</h6>
  32. </div>
  33.  
  34. <div class="row">
  35. <input type="file" id="file-input" accept=".jar" name="file" />
  36. <button id="select-file" class="waves-effect waves-light btn" data-i18n-text="select_file">Select file</button>
  37.  
  38. <button id="save-file" class="waves-effect waves-light btn" data-i18n-text="save_file">Save file</button>
  39.  
  40. <a class="waves-effect waves-light btn right" href="#settings-modal" data-i18n-text="settings">Settings</a>
  41. </div>
  42.  
  43. <div id="settings-modal" class="modal">
  44. <div class="modal-content">
  45. <h5 class="modal-header" data-i18n-text="settings">Settings</h5>
  46.  
  47. <div class="option-group">
  48. <span class="option-group-title" data-i18n-text="select_lang">Select language</span>
  49. <p>
  50. <input name="langs-group" type="radio" data-lang-id="pt-BR" id="lang_pt-BR" />
  51. <label for="lang_pt-BR">Portuguese (Brazil)</label>
  52. </p>
  53. <p>
  54. <input name="langs-group" type="radio" data-lang-id="en" id="lang_en" />
  55. <label for="lang_en">English</label>
  56. </p>
  57. </div>
  58.  
  59. <div class="option-group">
  60. <span class="option-group-title" data-i18n-text="misc_options">Misc</span>
  61. <p class="checkbox-filled">
  62. <input type="checkbox" class="filled-in" data-setting-id="showContext" id="show-context" checked="checked" />
  63. <label for="show-context">Mostrar contexto da string.</label>
  64. </p>
  65. <p class="checkbox-filled">
  66. <input type="checkbox" class="filled-in" data-setting-id="orderByContext" id="order-by-context" checked="checked" />
  67. <label for="order-by-context">Organizar pelo contexto.</label>
  68. </p>
  69. </div>
  70. </div>
  71. <div class="modal-footer">
  72. <a class=" modal-action modal-close waves-effect waves-green btn-flat">Ok</a>
  73. </div>
  74. </div>
  75.  
  76. <div id="string-list" class="row"></div>
  77. </div>
  78.  
  79. <script src="dist/vendors.js" defer></script>
  80. <script src="dist/polyfill.js" defer></script>
  81. <script src="dist/app.js" defer></script>
  82.  
  83. <!-- Google Analytics -->
  84. <script>
  85. window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
  86. ga('create', 'UA-81494650-2', 'auto');
  87. ga('send', 'pageview');
  88. </script>
  89. <script async src='../../www.google-analytics.com/analytics.js'></script>
  90. <!-- End Google Analytics -->
  91. </body>
  92.  
  93.  
  94. <!-- Mirrored from leonardosnt.github.io/jar-string-editor/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 18 Nov 2017 23:10:27 GMT -->
  95. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement