diff --git a/examples/es2015-custom-element.js b/examples/es2015-custom-element.js index 4a4dbd8901..5d3c38b854 100644 --- a/examples/es2015-custom-element.js +++ b/examples/es2015-custom-element.js @@ -9,7 +9,7 @@ class OLComponent extends HTMLElement { this.shadow = this.attachShadow({mode: 'open'}); const link = document.createElement('link'); link.setAttribute('rel', 'stylesheet'); - link.setAttribute('href', 'css/ol.css'); + link.setAttribute('href', 'theme/ol.css'); this.shadow.appendChild(link); const style = document.createElement('style'); style.innerText = ` diff --git a/examples/index.html b/examples/index.html index 4cc0670750..c42b21aa48 100644 --- a/examples/index.html +++ b/examples/index.html @@ -33,9 +33,6 @@ background-color: #f8f9fa !important; } - - -