Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions africa.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ <h1>🌍 Africa IMAX Theatres</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions americas.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ <h1>🌎 Americas IMAX Theatres</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions asia.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ <h1>🌏 Asia IMAX Theatres</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down
2 changes: 1 addition & 1 deletion data/americas/unitedstates.csv
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ NY,New York,AMC Lincoln Square 13 & IMAX,1.43:1,IMAX GT Laser,1.43:1,IMAX GT3D 1
NY,Rochester,Cinemark Tinseltown Rochester and IMAX,1.90:1,IMAX CoLa,1.43:1,IMAX SR 15/70 mm,16.1 m,21.3 m,Yes
NY,Staten Island,AMC Staten Island 11 & IMAX,1.90:1,IMAX CoLa,1.90:1,No,9.40 m,16.80 m,Yes
NY,Stony Brook,AMC Stony Brook 17 & IMAX,1.90:1,IMAX CoLa,1.90:1,No,8.50 m,15.90 m,Yes
NY,Syracuse,Regal Destiny USA & IMAX,1.90:1,IMAX CoLa,1.9.0,No,11.6 m,21.3 m,Yes
NY,Syracuse,Regal Destiny USA & IMAX,1.90:1,IMAX CoLa,1.90,No,11.6 m,21.3 m,Yes
OH,Cincinnati,Robert D. Lindner Family OMNIMAX® Theater,Dome 1.43:1,IMAX Laser for Dome,Dome 1.43:1,No,0 m,22.00 m,No
OH,Columbus,Lennox Town Center & IMAX,1.90:1,IMAX CoLa,1.90:1,No,9.20 m,17.70 m,Yes
OK,Moore,Regal Warren Moore & IMAX,1.43:1,IMAX CoLa,1.90:1,No,18.30 m,24.40 m,Yes
Expand Down
4 changes: 2 additions & 2 deletions database.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ <h1>🗃️ IMAX Theatre Database</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions europe.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ <h1>🇪🇺 Europe IMAX Theatres</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions js/theatre-database.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,8 +537,8 @@ class TheatreDatabase {
if (isNaN(height) || height === 0) return false;

switch (sizeFilter) {
case 'large': return height > 20;
case 'standard': return height >= 15 && height <= 20;
case 'large': return height >= 16;
case 'standard': return height >= 15 && height < 16;
case 'small': return height < 15;
default: return true;
}
Expand Down
4 changes: 2 additions & 2 deletions oceania.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ <h1>🌏 Oceania IMAX Theatres</h1>
<label for="screenSizeFilter">Screen Size:</label>
<select id="screenSizeFilter">
<option value="">All Sizes</option>
<option value="large">Large (&gt;20m)</option>
<option value="standard">Standard (15-20m)</option>
<option value="large">Large (&ge;16m)</option>
<option value="standard">Standard (15-16m)</option>
<option value="small">Small (&lt;15m)</option>
</select>
</div>
Expand Down