Build query true QueryBuilder.

This commit is contained in:
Alexander Zobnin
2016-01-23 20:31:45 +03:00
parent 3ee15a0a7e
commit 6b71f42c48
5 changed files with 48 additions and 176 deletions

View File

@@ -1,13 +1,10 @@
define([
'angular',
'lodash'
],
function (angular, _) {
function () {
'use strict';
var module = angular.module('grafana.services');
module.service('Utils', function() {
function utils() {
/**
* Expand Zabbix item name
@@ -43,5 +40,7 @@ function (angular, _) {
return new RegExp(pattern, flags);
};
});
}
return new utils();
});