Advertisement
U2F

Untitled

U2F
Aug 11th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.   <title>Interface Editor</title>
  6.   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" crossorigin="anonymous" />
  7.  
  8. </head>
  9.  
  10. <body>
  11.   <h1>Interface Editor</h1>
  12.   <script>
  13.       const electron = require('electron');
  14.       const {IpcRenderer , ipcMain} = electron;
  15.      
  16.  
  17.       ipcMain.on('theme:change' , function()
  18.       {
  19.         $('body').css('background-color', 'red');
  20.         console.log("wow");
  21.       });
  22.   </script>
  23. </body>
  24.  
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement