Dear Community,
i've encountered a problem with the Tiny_MCE Wysiwyg-Editor in the basic-setting.
I was trying to implement an java-script driven Promoblock that looks somehow like this:
- <div id="myCarousel" class="carousel slide">
- <ol class="carousel-indicators">
- <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
- <li data-target="#myCarousel" data-slide-to="1"></li>
- <li data-target="#myCarousel" data-slide-to="2"></li>
- </ol>
- <!-- Carousel items -->
- <div class="carousel-inner">
- <div class="active item">…</div>
- <div class="item">…</div>
- <div class="item">…</div>
- </div>
- <!-- Carousel nav -->
- <a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
- <a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
- </div>
(This is taken from the bootstrap-framework)
Unfortunately the WYSIWIG-HTML-Editor cleans up the code and therefore the data-slide-to argument simply is gone after i try to save this.
As i don't know how to turn this off, i just wanted to get rid of this WYSIWIG ;)
Does anyone know how to achieve this?
Best regards