I suspect the problem is a collision between jQuery and Cheetah.

Your index.html.tmpl template contains the phrase

      $(document).delegate('*[data-toggle="lightbox"]', 'click',
function(event) {
            event.preventDefault();
            $(this).ekkoLightbox();
        });

This is a call to the jQuery function $(), but Cheetah is treating it as a
tag. Escape the dollar sign like this:

      \$(document).delegate('*[data-toggle="lightbox"]', 'click',
function(event) {
            event.preventDefault();
            $(this).ekkoLightbox();
        });

-tk

On Fri, Oct 12, 2018 at 7:47 AM Auchtermuchty Weather <[email protected]>
wrote:

>
> Just to add, I use 'sudo' to run wee_reports as otherwise I get permission
> errors.
>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "weewx-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to