CRM-12887 switch to use load function
authoreileen <eileen@fuzion.co.nz>
Mon, 24 Jun 2013 00:55:16 +0000 (12:55 +1200)
committereileen <eileen@fuzion.co.nz>
Mon, 24 Jun 2013 00:55:16 +0000 (12:55 +1200)
templates/CRM/Contribute/Page/DashBoard.js

index 71c49df783d08db2b1f91d1035e04e215c9d2c4e..f68004ceb97dbb159d4acfbfe5257aedc9266c3b 100644 (file)
@@ -19,22 +19,12 @@ cj(function ($) {
     }
     chartUrl = CRM.url("civicrm/ajax/chart", {snippet : 4});
     chartUrl    += "&year=" + year + "&type=" + charttype;
-    $.ajax({
-      url     : chartUrl,
-      success  : function(html) {
-        $("#chartData").html(html);
-      }
-    });
+    $(chartData).load(chartUrl);
   }
 
   function buildTabularView() {
     var tableUrl = CRM.url("civicrm/contribute/ajax/tableview", {showtable: 1, snippet: 4});
-    $.ajax({
-      url      : tableUrl,
-      success  : function(html) {
-        $("#tableData").html(html);
-      }
-    });
+    $(tableData).load(tableUrl);
   }
 
   getChart();