-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding flat lazy load using intersection observer
- Loading branch information
Showing
11 changed files
with
3,957 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name = "Flat Lazy load Images" | ||
description = "FLAT module to allow lazy loading images using a single data attribute" | ||
package = FLAT | ||
core = 7.x | ||
version = 7.x-0.1-dev | ||
dependencies[] = system |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
/** | ||
* Lazy load images module | ||
*/ | ||
function flat_lazy_load_images() {} | ||
|
||
/** | ||
* Assets for lazy loading images | ||
*/ | ||
function flat_lazy_load_images_assets() { | ||
drupal_add_js(drupal_get_path('module', 'flat_lazy_load_images') . '/js/flat-lazy.js'); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.