JamesValero / yjl

Automatically exported from code.google.com/p/yjl
0 stars 0 forks source link

Issue after label click, enlarged labels in firefox, no cloud in IE. #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
FireFox:
1. Click one of the labels in the cloud at http://ondotnet.deap.nu
2. The links fontsize get larger (largest is above my maxsetting).

IE7
1. Click one of the labels in the cloud at http://ondotnet.deap.nu
2. The links stays as a list instead of being transformed into a cloud.

What is the expected output? What do you see instead?
The expected output is the same tagcloud as when the page is first loaded.

What version of the product are you using? On what operating system?
N/A. Windows Vista.

Additional info:
This is my current settings for the widget:
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
// LabelX for Blogger
// http://code.google.com/p/yjl/wiki/LabelX
google.load("jquery", "1.2.6");
google.setOnLoadCallback(function() {
    // As Label Cloud
    LX_Render('Label1', 'cloud', {
        MinFontSize: 10,
        MaxFontSize: 22,
        FontSizeUnit: 'px',
        Limit: -100,
        SortByName: true,
        Reverse: false
        });
    });
</script>
<script
src="http://yjl.googlecode.com/svn-history/r78/trunk/Blogger/LabelX.js"
type="text/javascript"> </script>

Original issue reported on code.google.com by dan82pet...@gmail.com on 16 Jan 2009 at 10:47

GoogleCodeExporter commented 8 years ago

Original comment by livibet...@gmail.com on 20 Jan 2009 at 3:18

GoogleCodeExporter commented 8 years ago
When visits an label page, the html code of Label gadget is different.
*Normal*
{{{
<li>
<a dir="ltr" href="http://oopsbroken.blogspot.com/search/label/i">
i
</a>
<span dir="ltr">(2)</span>
</li>
}}}
*Selected*
{{{
<li>
<span dir="ltr">
i
</span>
<span dir="ltr">(2)</span>
</li>
}}}

It changes element type from `<a>` to `<span>` for label text.

Original comment by livibet...@gmail.com on 20 Jan 2009 at 3:51

GoogleCodeExporter commented 8 years ago
The problems on Firefox and IE should have been resolved now. Please replace

<script src="http://yjl.googlecode.com/svn-history/r78/trunk/Blogger/LabelX.js"
type="text/javascript"> </script>

with

<script src="http://yjl.googlecode.com/svn/trunk/Blogger/LabelX.js"
type="text/javascript"> </script>

Please confirm that they are resolved, thanks!

Original comment by livibet...@gmail.com on 20 Jan 2009 at 4:19

GoogleCodeExporter commented 8 years ago
I have installed the changed script reference, and now it works. Thank you! 
/Dan,
http://ondotnet.deap.nu

Original comment by dan82pet...@gmail.com on 22 Jan 2009 at 7:20

GoogleCodeExporter commented 8 years ago
Thanks, too. Just FYI, LabelX now also support coloring, you may want to check 
out.

Original comment by livibet...@gmail.com on 22 Jan 2009 at 7:27