From 4afe025c75dce90f236b36381d6959045eb960e9 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 15 Aug 2013 13:58:58 +0200 Subject: [PATCH] Add missing space between CSS classes --- src/ol/control/fullscreencontrol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/control/fullscreencontrol.js b/src/ol/control/fullscreencontrol.js index 070be30f44..66cf684227 100644 --- a/src/ol/control/fullscreencontrol.js +++ b/src/ol/control/fullscreencontrol.js @@ -53,7 +53,7 @@ ol.control.FullScreen = function(opt_options) { this.handleFullScreenChange_, false, this); var element = goog.dom.createDom(goog.dom.TagName.DIV, { - 'class': this.cssClassName_ + ' ' + ol.css.CLASS_UNSELECTABLE + + 'class': this.cssClassName_ + ' ' + ol.css.CLASS_UNSELECTABLE + ' ' + (!goog.dom.fullscreen.isSupported() ? ol.css.CLASS_UNSUPPORTED : '') }, aElement);