fix(panel): fixed panel help tooltip issue, #4079

This commit is contained in:
Torkel Ödegaard 2016-12-19 16:36:09 +01:00
parent ecf44d4d9c
commit a2baec8592
3 changed files with 5 additions and 2 deletions

View File

@ -144,7 +144,7 @@ module.directive('grafanaPanel', function($rootScope) {
function updatePanelCornerInfo() {
var cornerMode = ctrl.getInfoMode();
cornerInfoElem[0].className = 'panel-info-corner + panel-info-corner--' + cornerMode;
cornerInfoElem[0].className = 'panel-info-corner panel-info-corner--' + cornerMode;
if (cornerMode) {
if (infoDrop) {

View File

@ -9,7 +9,7 @@ module.exports = function(grunt) {
'concat:cssFonts',
'styleguide',
'sasslint',
'postcss'
'postcss',
]
);

View File

@ -1,5 +1,8 @@
module.exports = function(config) {
return {
options: {
restructuring: false,
},
build: {
expand: true,
cwd: '<%= genDir %>',