| 1 |
<?php |
| 2 |
// Make sure we isntantiate the library so any library specific filters/setup get run |
| 3 |
$library = $this->get_post_meta( $post->ID, 'library' ); |
| 4 |
$this->library( $library ); |
| 5 |
?> |
| 6 |
<!doctype html> |
| 7 |
<html> |
| 8 |
<head> |
| 9 |
<meta charset="utf-8"> |
| 10 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 11 |
<title><?php echo get_the_title( $post->ID ); ?></title> |
| 12 |
<meta name="description" content=""> |
| 13 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
| 14 |
<?php wp_print_scripts( apply_filters( 'm_chart_iframe_scripts', $scripts, $post->ID ) ); ?> |
| 15 |
</head> |
| 16 |
<!-- overflow: hidden; prevents the iframe from scrolling --> |
| 17 |
<body style="overflow: hidden;"> |
| 18 |
<?php echo $this->get_chart( $post->ID, $_GET ); ?> |
| 19 |
</body> |
| 20 |
</html> |