drupal-civicrm/sites/all/modules/civicrm/ang/crmMailingAB/NewCtrl.js

12 lines
409 B
JavaScript
Raw Normal View History

2018-01-14 15:10:16 +02:00
(function(angular, $, _) {
angular.module('crmMailingAB').controller('CrmMailingABNewCtrl', function($scope, abtest, $location) {
// Transition URL "/abtest/new/foo" => "/abtest/123/foo"
var parts = $location.path().split('/'); // e.g. "/mailing/new" or "/mailing/123/wizard"
parts[2] = abtest.id;
$location.path(parts.join('/'));
$location.replace();
});
})(angular, CRM.$, CRM._);