Update 5.13.3.md
[civicrm-core.git] / ang / crmUi.js
index 70da3871c882862378f826be1ea53fd9dc4a95dc..0b09c60de711e54d60d6e04d823878b09b16f6ae 100644 (file)
         link: function (scope, element, attrs) {
           scope.ts = CRM.ts(null);
 
-          element.find('.crm-wizard-buttons button').click(function () {
+          element.find('.crm-wizard-buttons button[ng-click^=crmUiWizardCtrl]').click(function () {
             // These values are captured inside the click handler to ensure the
             // positions/sizes of the elements are captured at the time of the
             // click vs. at the time this directive is initialized.
 
     // Sets document title & page title; attempts to override CMS title markup for the latter
     // WARNING: Use only once per route!
+    // WARNING: This directive works only if your AngularJS base page does not
+    // set a custom title (i.e., it has an initial title of "CiviCRM"). See the
+    // global variables pageTitle and documentTitle.
     // Example (same title for both): <h1 crm-page-title>{{ts('Hello')}}</h1>
     // Example (separate document title): <h1 crm-document-title="ts('Hello')" crm-page-title><i class="crm-i fa-flag"></i>{{ts('Hello')}}</h1>
     .directive('crmPageTitle', function($timeout) {