[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/layouts/vlayout/modules/Migration/resources/ -> Index.js (source)

   1  /*+***********************************************************************************
   2   * The contents of this file are subject to the vtiger CRM Public License Version 1.0
   3   * ("License"); You may not use this file except in compliance with the License
   4   * The Original Code is:  vtiger CRM Open Source
   5   * The Initial Developer of the Original Code is vtiger.
   6   * Portions created by vtiger are Copyright (C) vtiger.
   7   * All Rights Reserved.
   8   *************************************************************************************/
   9  
  10  jQuery.Class("Migration_Index_Js",{
  11      
  12      startMigrationEvent : function(){
  13          
  14          var migrateUrl = 'index.php?module=Migration&view=Index&mode=applyDBChanges';
  15              AppConnector.request(migrateUrl).then(
  16              function(data) {
  17                  jQuery("#running").hide();
  18                  jQuery("#success").show();
  19                  jQuery("#nextButton").show();
  20                  jQuery("#showDetails").show().html(data);
  21              })
  22      },
  23      
  24      registerEvents : function(){
  25          this.startMigrationEvent();
  26      }
  27      
  28  });


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1