Changeset 560549
- Timestamp:
- 06/19/2012 02:13:00 PM (14 years ago)
- Location:
- seo-crawlytics/trunk
- Files:
-
- 7 edited
-
include/admin/dashboard_graph.php (modified) (3 diffs)
-
include/admin/dashboard_plain_graph.php (modified) (2 diffs)
-
include/widgets/chart_active_times.php (modified) (1 diff)
-
include/widgets/chart_top_bots.php (modified) (1 diff)
-
include/widgets/chart_top_categories.php (modified) (1 diff)
-
include/widgets/chart_top_pages.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
seo-crawlytics/trunk/include/admin/dashboard_graph.php
r548917 r560549 4 4 <script type="text/javascript"> 5 5 jQuery(function($) { 6 6 7 var firstReport = <?php echo json_encode($nFirstReport); ?>; 7 8 var secondReport = <?php echo json_encode($nSecondReport); ?>; … … 16 17 } 17 18 18 $(window).resize(function() {19 function bota_dashboard_graph() { 19 20 20 21 var dataSeries = [ … … 49 50 plot.setSelection(ranges); 50 51 }); 51 }); 52 } 53 54 bota_dashboard_graph(); 55 56 $(window).resize(function() { bota_dashboard_graph() }); 57 52 58 }); 53 59 </script> -
seo-crawlytics/trunk/include/admin/dashboard_plain_graph.php
r548917 r560549 14 14 } 15 15 } 16 17 $(window).resize(function() {18 16 17 function bota_plain_graph() { 18 19 19 var plot = $.plot($("#botPlainChart"), [ 20 20 { data: firstPlainReport, label: "<?php echo $knownBots[0]['name']; ?>", lines: { show: true, fill: true }, points: { show: true } }, … … 23 23 ], options); 24 24 25 } 26 27 bota_plain_graph(); 28 29 $(window).resize(function() { 30 bota_plain_graph(); 25 31 }); 26 32 }); -
seo-crawlytics/trunk/include/widgets/chart_active_times.php
r548917 r560549 17 17 }; 18 18 19 function bota_active_times_chart() { 20 var plot = $.plot($("#barActiveTimesChart"), dataSeries, options); 21 } 22 23 bota_active_times_chart(); 24 19 25 $(window).resize(function() { 20 21 var plot = $.plot($("#barActiveTimesChart"), dataSeries, options); 22 26 bota_active_times_chart(); 23 27 }); 24 28 }); -
seo-crawlytics/trunk/include/widgets/chart_top_bots.php
r548917 r560549 28 28 } 29 29 }; 30 31 function bota_top_bots_chart() { 32 var plot = $.plot($("#barTopBotsChart"), dataSeries, options); 33 } 34 35 bota_top_bots_chart(); 30 36 31 37 $(window).resize(function() { 32 33 var plot = $.plot($("#barTopBotsChart"), dataSeries, options); 34 38 bota_top_bots_chart(); 35 39 }); 36 40 }); -
seo-crawlytics/trunk/include/widgets/chart_top_categories.php
r548917 r560549 30 30 }; 31 31 32 function bota_top_categories_chart() { 33 var plot = $.plot($("#pieTopCategoriesChart"), dataSeries, options); 34 } 35 36 bota_top_categories_chart(); 37 32 38 $(window).resize(function() { 33 34 var plot = $.plot($("#pieTopCategoriesChart"), dataSeries, options); 35 39 bota_top_categories_chart(); 36 40 }); 37 41 }); -
seo-crawlytics/trunk/include/widgets/chart_top_pages.php
r548917 r560549 30 30 }; 31 31 32 function bota_top_pages_chart() { 33 var plot = $.plot($("#pieTopPagesChart"), dataSeries, options); 34 } 35 36 bota_top_pages_chart(); 37 32 38 $(window).resize(function() { 33 34 var plot = $.plot($("#pieTopPagesChart"), dataSeries, options); 35 39 bota_top_pages_chart(); 36 40 }); 37 41 }); -
seo-crawlytics/trunk/readme.txt
r548946 r560549 70 70 71 71 = 1.1.8 = 72 * Fixed bug that stopped graphs from displaying in Chrome browser. 73 74 = 1.1.7 = 72 75 * The installation script now creates the required config file within the plugin's "/track/" directory. 73 76 * The external track script now reads the place holder tracking image from an image file, instead of having it embed within the script itself. 74 77 75 = 1.1. 7=78 = 1.1.6 = 76 79 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.