Created
June 5, 2014 11:48
-
-
Save kuc-arc-f/195c3bc64d27ba1ae9dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function click_sub() | |
{ | |
chrome.app.window.create( | |
'sub.html', | |
{id: "browserSlideID", | |
bounds: { | |
'width' : 1024, | |
'height': 600 | |
} | |
} | |
, function(appWin) { | |
appWin.contentWindow.addEventListener('DOMContentLoaded', | |
function(e) { | |
console.log( '#.DOMContentLoaded' ); | |
appWin.show(); | |
} | |
) | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment