Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. chrome.app.runtime.onLaunched.addListener(function() {
  2. chrome.app.window.create('admin/admin.php', {
  3. 'outerBounds': {
  4. 'width': 400,
  5. 'height': 500
  6. }
  7. });
  8. });
  9.  
  10. <!DOCTYPE html>
  11. <html>
  12. <head>
  13. <meta charset="utf-8">
  14. </head>
  15. <body>
  16. <h1>Hello, let's code!</h1>
  17. </body>
  18. </html>
  19. <script src='../libraries/jquery.min.js'></script>
  20. <script src='test.js'></script>
  21.  
  22. console.log('Did it load?')
  23. $.ajax({
  24. url: '../server/admin.php'
  25. }).done(function (data) {
  26. $('body').html(data)
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement