Hello Cesium,--After updating the project to Cesium 1.7, I began getting errors upon clicking czmlDataSources (which should pop up the InfoBox widget)TypeError: Cannot read property 'background-color' of nullat Function.A.notifySubscribers (http://localhost:8080/cesium-cop/Source/ThirdParty/knockout-3.2.0.js:33:55)at d [as _descriptionSanitizedHtml] (http://localhost:8080/cesium-cop/Source/ThirdParty/knockout-3.2.0.js:36:71)at knockout.defineProperty.set (http://localhost:8080/cesium-cop/Source/Widgets/InfoBox/InfoBoxViewModel.js:100:56)at f [as description] (http://localhost:8080/cesium-cop/Source/ThirdParty/knockout-3.2.0.js:43:512)at Viewer._onTick (http://localhost:8080/cesium-cop/Source/Widgets/Viewer/Viewer.js:1325:46)at Event.raiseEvent (http://localhost:8080/cesium-cop/Source/Core/Event.js:146:30)at Clock.tick (http://localhost:8080/cesium-cop/Source/Core/Clock.js:203:21)at CesiumWidget.render (http://localhost:8080/cesium-cop/Source/Widgets/CesiumWidget/CesiumWidget.js:633:39)I tried looking into this by checking out infobox.jsif (frameContent.childNodes.length === 1) {var style = window.getComputedStyle(frameContent.firstChild);var color = Color.fromCssColorString(style['background-color']);if (color.alpha !== 0) {infoElement.style['background-color'] = style['background-color'];}} else {infoElement.style['background-color'] = null;}And the problem occurs when frameContent.childNodes.length === 1... which is whenever i click my czmlDataSource. Any ideas? Thanks!Katone
You received this message because you are subscribed to the Google Groups "cesium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cesium-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
It's Adblock.Even being disabled for the given site it still produces the error.
--