Changeset 1196655
- Timestamp:
- 07/10/2015 09:12:35 PM (11 years ago)
- Location:
- appointmind/trunk
- Files:
-
- 1 added
- 1 deleted
- 4 edited
-
appointmind.php (modified) (1 diff)
-
js/iframeResizer.min.js (added)
-
js/jquery.ba-postmessage.min.js (deleted)
-
readme.txt (modified) (1 diff)
-
templates/article_calendar.php (modified) (1 diff)
-
templates/footer_code.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
appointmind/trunk/appointmind.php
r1188598 r1196655 7 7 Plugin URI: http://www.appointmind.com/wordpress-plugin/?tracking=wordpress 8 8 Description: Include your Appointmind or Schedule Organizer online appointment scheduling calender in any article or in the sidebar. This plugin requires that you have purchased either a monthly subscription or the downloadable version of the software. This plugin does not include the appointmind scheduling software. You can get the subscription or the software at <a href="http://www.appointmind.com/?tracking=wordpress" target="_blank">Appointmind.com</a>. 9 Version: 3. 1.09 Version: 3.2.0 10 10 Author: Appointmind 11 11 Author URI: http://www.appointmind.com/?tracking=wordpress -
appointmind/trunk/readme.txt
r1188605 r1196655 20 20 21 21 == Changelog == 22 23 = 3.3.0 = 24 25 Updated message library. 22 26 23 27 = 3.2.0 = -
appointmind/trunk/templates/article_calendar.php
r1188598 r1196655 1 <div id="iframe"></div> 2 <noscript> 1 3 2 <iframe 4 3 src="<?php echo $appointmindUrlDomain.$appointmindUrlPath.$appointmindUrlParameters ?>" 4 id="calendarIframe" 5 5 style="border:none;width:<?php echo $view->iframeWidth ?>;height:<?php echo $view->iframeHeight ?>;padding:0;margin:0;" 6 6 frameborder="0"> 7 7 </iframe> 8 </noscript> -
appointmind/trunk/templates/footer_code.php
r1188598 r1196655 1 <script type="text/javascript" src="<?php echo WP_PLUGIN_URL ?>/appointmind/js/jquery.ba-postmessage.min.js"></script> 2 <script type="text/javascript"> 3 jQuery(function(){ 4 var if_height, 5 src = '<?php echo $appointmindUrlDomain.$appointmindUrlPath.$appointmindUrlParameters ?>#' + encodeURIComponent(document.location.href), 6 iframe = jQuery('<iframe " src="' + src + '" width="<?php echo $view->iframeWidth ?>" height="<?php echo $view->iframeHeight ?>" scrolling="no" frameborder="0"><\/iframe>').appendTo('#iframe'); 7 jQuery.receiveMessage(function(e) { 8 var h = Number(e.data.replace( /.*if_height=(\d+)(?:&|$)/, '$1')); 9 if (!isNaN(h) && h > 0 && h !== if_height) { 10 iframe.height(if_height = h); 11 } 12 }, '<?php echo $appointmindUrlDomain ?>'); 13 }); 14 </script> 1 <script type="text/javascript" src="<?php echo WP_PLUGIN_URL ?>/appointmind/js/iframeResizer.min.js"></script> 2 <script type="text/javascript">iFrameResize({log:false});</script>
Note: See TracChangeset
for help on using the changeset viewer.