PluginProbe
M Chart / 1.11
M Chart v1.11
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / components / templates / share.php

share.php in M Chart 1.11, at components/templates/share.php

24 lines 708 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( 1 == $this->instance ) {
3 ?>
4 <script type="text/javascript">
5 var m_chart_share = {};
6
7 (function( $ ) {
8 'use strict';
9
10 m_chart_share.init = function() {
11 $( '.m-chart-share' ).on( 'click', function () {
12 $( this ).select();
13 });
14 };
15
16 $( function() {
17 m_chart_share.init();
18 } );
19 })( jQuery );
20 </script>
21 <?php
22 }
23 ?>
24 <label for="m-chart-share-<?php echo absint( $post_id ); ?>-<?php echo absint( $this->instance ); ?>"><?php echo esc_html__( 'Share:', 'm-chart' ); ?></label><textarea rows="3" id="m-chart-share-<?php echo absint( $post_id ); ?>-<?php echo absint( $this->instance ); ?>" class="m-chart-share"><?php echo $this->get_chart_iframe( $post_id, $args ); ?></textarea>