Updated small details
This commit is contained in:
@@ -233,7 +233,7 @@ var currentfilms = [
|
||||
"description": "panchromatic film, could be Orwo N74+",
|
||||
"launched": 2022,
|
||||
"datasheet": "",
|
||||
"lomography": "",
|
||||
"lomography": "https://www.lomography.com/films/871974092-kiki-pan-320/photos",
|
||||
"flickr": "https://www.flickr.com/search/?media=photos&text=%22Kiki%20Pan%20320%22",
|
||||
"image": "cfp-kiki-pan-320-135.png"
|
||||
},
|
||||
@@ -3892,4 +3892,4 @@ var currentfilms = [
|
||||
"flickr": "https://www.flickr.com/search/?media=photos&text=%22Yodica%20Vega%22",
|
||||
"image": "yodica-vega-135.png"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
@@ -305,4 +305,4 @@ var discontinuedfilms = [
|
||||
"flickr": "https://www.flickr.com/search/?media=photos&text=%22Street%20Candy%20ATM%20400%22",
|
||||
"image": "street-candy-atm-400-135.png"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
@@ -813,4 +813,4 @@ var guide = [
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
@@ -15,4 +15,4 @@ Vue.createApp({
|
||||
document.querySelector('body').classList.remove('dark');
|
||||
}
|
||||
}
|
||||
}).mount('#faq');
|
||||
}).mount('#faq');
|
||||
|
||||
@@ -72,4 +72,4 @@ Vue.createApp({
|
||||
document.querySelector('body').classList.remove('dark');
|
||||
}
|
||||
}
|
||||
}).mount('#guide');
|
||||
}).mount('#guide');
|
||||
|
||||
@@ -16,7 +16,8 @@ Vue.createApp({
|
||||
return this.currentfilms.filter(function (film) {
|
||||
const name = film.name.toLowerCase();
|
||||
const description = film.description.toLowerCase();
|
||||
const matches = (searchTerm) => name.includes(searchTerm) || description.includes(searchTerm);
|
||||
const company = film.company.toLowerCase();
|
||||
const matches = (searchTerm) => name.includes(searchTerm) || description.includes(searchTerm) || company.includes(searchTerm);
|
||||
return searchTerms.every(matches);
|
||||
});
|
||||
} else {
|
||||
@@ -97,4 +98,4 @@ Vue.createApp({
|
||||
document.querySelector('body').classList.remove('dark');
|
||||
}
|
||||
}
|
||||
}).mount('#app');
|
||||
}).mount('#app');
|
||||
|
||||
@@ -40,4 +40,4 @@ Vue.createApp({
|
||||
document.querySelector('body').classList.remove('dark');
|
||||
}
|
||||
}
|
||||
}).mount('#random');
|
||||
}).mount('#random');
|
||||
|
||||
Reference in New Issue
Block a user