This file contains 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 | |
function creatium_embed($subdomain, $path) { | |
if (!function_exists('curl_init')) { | |
die('Error: curl module is missing'); | |
} | |
if (strpos($subdomain, '/') !== false) { | |
die('Error: wrong subdomain'); | |
} |
This file has been truncated, but you can view the full file.
This file contains 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
/** | |
* vis.js | |
* https://github.com/almende/vis | |
* | |
* A dynamic, browser-based visualization library. | |
* | |
* @version 4.20.1-SNAPSHOT | |
* @date 2017-06-12 | |
* | |
* @license |
This file contains 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
.vis .overlay { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
/* Must be displayed above for example selected Timeline items */ | |
z-index: 10; | |
} |
This file has been truncated, but you can view the full file.
This file contains 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
/** | |
* vis.js | |
* https://github.com/almende/vis | |
* | |
* A dynamic, browser-based visualization library. | |
* | |
* @version 4.20.1-SNAPSHOT | |
* @date 2017-06-12 | |
* | |
* @license |