Sha256: edb3b59e02d2bfcd4db580e6620730c586d3e44afc6d628f5d4be73aa01a30d5
Contents?: true
Size: 1022 Bytes
Versions: 2
Compression:
Stored size: 1022 Bytes
Contents
define([ 'angular', 'app', 'lodash' ], function (angular, app, _) { 'use strict'; var module = angular.module('kibana.controllers'); module.controller('PulldownCtrl', function($scope, $rootScope, $timeout,ejsResource, querySrv) { var _d = { collapse: false, notice: false, enable: true }; _.defaults($scope.pulldown,_d); $scope.init = function() { $scope.querySrv = querySrv; // Provide a combined skeleton for panels that must interact with panel and row. // This might create name spacing issues. $scope.panel = $scope.pulldown; $scope.row = $scope.pulldown; }; $scope.toggle_pulldown = function(pulldown) { pulldown.collapse = pulldown.collapse ? false : true; if (!pulldown.collapse) { $timeout(function() { $scope.$broadcast('render'); }); } else { $scope.row.notice = false; } }; $scope.init(); } ); });
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kibana-sinatra-3.0.0.0 | lib/kibana/assets/app/controllers/pulldown.js |
kibana-sinatra-0.0.8 | lib/kibana/assets/app/controllers/pulldown.js |