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

field-textarea.html « form-field « angularjs « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a52d05cb722792c2cf6dc409518c9cafed11e5cc (plain)
1
2
3
4
5
6
7
8
9
<div>
    <textarea name="{{ formField.name }}"
              piwik-attributes="{{formField.uiControlAttributes}}"
              id="{{ formField.name }}"
              ng-model="formField.value"
              class="materialize-textarea"
    ></textarea>
    <label for="{{ formField.name }}" ng-bind-html="formField.title"></label>
</div>