sebhildebrandt / reveal.js-tagcloud-plugin

Simple Tag-Cloud Plugin for reveal.js
MIT License
44 stars 20 forks source link

Tag are in line format instead of cloud format #2

Closed paoesco closed 9 years ago

paoesco commented 9 years ago

Hello,

I use revealjs 3.0.0 and tagcloud 0.1.0 but when I use the plugin, the items are in line instead in cloud format

issue_tagcloud

I added { src: 'plugin/tagcloud/tagcloud.js', async: true } in the dependencies and added the css you mention to add some space between the tags.

My section is like this :

<section tagcloud>
    DevOps
    PaaS
    Continuous Delivery
    Jenkins
    Framework
    Microservice
    Heroku 
    TravisCI 
    VersionEye
    Docker
    Coveralls
    Monitoring
    Logging
    SOA
</section>

Am I missing something ?

paoesco commented 9 years ago

I tried with reveal 3.1.0 and I have the same problem

Firefox 31.0 & Internet Explorer 11

sebhildebrandt commented 9 years ago

I will check it next week. I am sure, there will be a solution ;-)

Sebastian

Am 02.07.2015 um 13:45 schrieb Paolo Escobar notifications@github.com:

I tried with reveal 3.1.0 and I have the same problem

— Reply to this email directly or view it on GitHub.

paoesco commented 9 years ago

If you need all the code, it's here : https://github.com/paoesco/presentations/tree/master/soft_dev_made_easy

dentinger commented 9 years ago

I had similar issues today with the cloud not being created. I found a work around. If you add a single space to end of each entry you want in the tag cloud AND include the word with the space in a span then the cloud generates. For example

 <span>foo </span> 
instead of
 <span>foo</span>  
the word cloud would generate as expected. This worked in several versions of reveal for me. Hope this helps.

sebhildebrandt commented 9 years ago

Thank you Dan,

anyway, I will check the code next week (Tuesday or Wednesday) :-)

Am 02.07.2015 um 20:51 schrieb Dan Dentinger notifications@github.com:

I had similar issues today with the cloud not being created. I found a work around. If you add a single space to end of each entry you want in the tag cloud AND include the word with the space in a span then the cloud generates. For example

foo instead of foo
the word cloud would generate as expected. This worked in several versions of reveal for me. Hope this helps.

— Reply to this email directly or view it on GitHub https://github.com/sebhildebrandt/reveal.js-tagcloud-plugin/issues/2#issuecomment-118124932.

paoesco commented 9 years ago

Hello,

did you have a look at this issue ? Thanks

dentinger commented 9 years ago

I did not get a chance to dig into why it was happening. I ran into it and found a quick a way to work around it.

Dan

On Thu, Jul 16, 2015 at 10:21 AM, Paolo Escobar notifications@github.com wrote:

Hello,

did you have a look at this issue ? Thanks

— Reply to this email directly or view it on GitHub https://github.com/sebhildebrandt/reveal.js-tagcloud-plugin/issues/2#issuecomment-121970360 .

sebhildebrandt commented 9 years ago

Actually, I said, I will have look at the issue. I'm sorry, but I didn't had the time. Tomorrow I will dig into the code. Ok?

Sebastian

Am 16.07.2015 um 18:49 schrieb Dan Dentinger notifications@github.com:

I did not get a chance to dig into why it was happening. I ran into it and found a quick a way to work around it.

Dan

On Thu, Jul 16, 2015 at 10:21 AM, Paolo Escobar notifications@github.com wrote:

Hello,

did you have a look at this issue ? Thanks

— Reply to this email directly or view it on GitHub https://github.com/sebhildebrandt/reveal.js-tagcloud-plugin/issues/2#issuecomment-121970360 .

— Reply to this email directly or view it on GitHub.

sebhildebrandt commented 9 years ago

Finally: bug fixed, documentation updated (dependencies) & version update to 1.1

Sebastian

paoesco commented 9 years ago

Thank you very much