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
let url = "PLACE URL HERE" | |
let w = screen.width; | |
let h = screen.height; | |
alert(`should be ${h} high and ${w} wide`); | |
window.open(url,'_blank','height='+h+', width='+w); |
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
<?php | |
/* MOST SIMPLE API */ | |
/* | |
* Add functions to class Methods | |
* currently, the script supports the call api.php/test | |
* */ | |
// respond as JSON |
NewerOlder