[EventCalendar] Minor Issues with EC3

firetree_ec3 at spamex.com firetree_ec3 at spamex.com
Wed Oct 10 18:36:10 UTC 2007


> * Replies will be sent through Spamex to eventcalendar at firetree.net
> * For additional info click -> http://www.spamex.com/i/?v=17832931

Hmm... Forgive me if this is repeated, but the last copy I sent  
didn't make it to the list.
####
These aren't new. They've been happening for some time. They are very  
minor, and I can live without them. However, they are probably  
disgustingly easy to fix.

Firefox is my primary browser, and these are errors from the Web  
Developer Toolbar Error Console:

####
Warning: variable table hides argument
Source File: http://localhost/~cmarshall/longislandna.org/public_html/ 
wp-content/plugins/eventcalendar3/ec3.js
Line: 91, Column: 8
Source Code:
     var table=table.cloneNode(1);
####
The problem here is this:

   /** Replaces the caption and tbody in table to be the specified  
year/month. */
   function create_calendar(table,month_num,year_num)
   {
     // Take a deep copy of the current calendar.
     var table=table.cloneNode(1); <- table hides passed in parameter
####

####
Warning: Unknown property 'filter'.  Declaration dropped.
Source File: http://localhost/~cmarshall/longislandna.org/public_html/
Line: 31
####
The problem is this:
<style type='text/css' media='screen'>
@import url(http://localhost/~cmarshall/longislandna.org/public_html/ 
wp-content/plugins/eventcalendar3/ec3.css);
.ec3_ec {
background-image:url(http://localhost/~cmarshall/longislandna.org/ 
public_html/wp-content/plugins/eventcalendar3/ec.png) !IMPORTANT;
background-image:none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http:// 
localhost/~cmarshall/longislandna.org/public_html/wp-content/plugins/ 
eventcalendar3/ec.png');
}
The filter parameter needs to be encased in IE-only markup.
####

####
Warning: Unknown property 'filter'.  Declaration dropped.
Source File: http://localhost/~cmarshall/longislandna.org/public_html/ 
wp-content/plugins/eventcalendar3/ec3.css
Line: 64
####
The problem is this:
/***
***  Popup
***/

.ec3_popup {
margin:0 !IMPORTANT;
padding:0 !IMPORTANT;
border:none;
position:absolute;
border-collapse:collapse;
filter:alpha(opacity=87);
-moz-opacity:.87;
opacity:.87;
z-index:30000;
}
The filter parameter needs to be encased in IE-only markup. I  
recommend putting it in the source file itself, within IE conditional  
comments.
####

Chris



More information about the EventCalendar mailing list