Volker Nebelung: Lightbox Problem

Beitrag lesen

Hatte ich auch schon nachgesheen. Müssten stimmen.

"Müssten" ist ein t zuviel ;-).

Ordnerstruktur ist folgende: Hompagename/lightbox/js

fileLoadingImage:        'images/loading.gif',
fileBottomNavCloseImage: 'images/closelabel.gif',

Und wo liegen die Dateien? Beachte, dass die Javascript-Datei in einem HTML-Dokument eingebunden wird, die relativen Pfade also von dort gelten.
Am besten mit absoluten Pfadangaben arbeiten, dann tauchen solche Unstimmigkeiten nicht auf:
fileLoadingImage:        '/images/loading.gif',
fileBottomNavCloseImage: '/images/closelabel.gif',
oder ähnlich ...

Gruß, Volker

--
„I conclude that there are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies and the other way is to make it so complicated that there are no obvious deficiencies."
- Tony Hoare