-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
исправляет экспорт, убирает лишнее и пробует исправить ошибки
- Loading branch information
1 parent
7f216e3
commit c2bfc78
Showing
4 changed files
with
18 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import './util.js'; | ||
import {createPhotoList} from './data.js'; | ||
import {renderThumbnails, picturesContainer} from './render-thumbnails.js'; | ||
import {renderThumbnails} from './render-thumbnails.js'; | ||
import {initClickListener} from './open-full-picture.js'; | ||
|
||
const data = createPhotoList(); | ||
const picturesDataList = createPhotoList(); | ||
|
||
renderThumbnails(data); | ||
initClickListener(data); | ||
renderThumbnails(picturesDataList); | ||
initClickListener(picturesDataList); | ||
|
||
|
||
|
||
Check failure on line 12 in js/main.js GitHub Actions / Check
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters