PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.0.3
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.0.3
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | js/frame.js +0 -11 3.0.93.0.3 View file →
@@ -2,15 +2,8 @@
2 2 /* global visualizer */
3 3 /* global alert */
4 4
5 5 (function ($) {
6 - $(window).load(function(){
7 - // scroll to the selected chart type.
8 - if($('label.type-label.type-label-selected').length > 0) {
9 - $('label.type-label.type-label-selected')[0].scrollIntoView();
10 - }
11 - });
12 -
13 6 $(document).ready(function () {
14 7 init_permissions();
15 8
16 9 $('.type-radio').change(function () {
@@ -76,12 +69,8 @@
76 69
77 70 $('.more-info').click(function () {
78 71 $(this).parent().find('.viz-section-description:first').toggle();
79 72 return false;
80 - });
81 -
82 - $('#cancel-button').click(function () {
83 - $('#cancel-form').submit();
84 73 });
85 74
86 75 });
87 76