| 123456789101112131415161718192021222324252627282930313233 |
- ///<reference path="../../headers/common.d.ts" />
- import angular = require('angular');
- import _ = require('lodash');
- export function arrayJoin() {
- 'use strict';
- return {
- restrict: 'A',
- require: 'ngModel',
- link: function(scope, element, attr, ngModel) {
- function split_array(text) {
- return (text || '').split(',');
- }
- function join_array(text) {
- if (_.isArray(text)) {
- return (text || '').join(',');
- } else {
- return text;
- }
- }
- ngModel.$parsers.push(split_array);
- ngModel.$formatters.push(join_array);
- }
- };
- }
- angular.module('grafana.directives').directive('arrayJoin', arrayJoin);
|