Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FeedbackQuestion.adapter.ts « FeedbackQuestion « src « vue « Feedback « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8206972ef714f8846af9df52267ca49ae55c2be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

import { createAngularJsAdapter } from 'CoreHome';
import RateFeature from './FeedbackQuestion.vue';

export default createAngularJsAdapter({
  component: RateFeature,
  scope: {
    showQuestionBanner: {
      angularJsBind: '@',
    },
  },
  directiveName: 'piwikFeedbackQuestion',
});