mod-build 3.7.6 → 3.7.7-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.7.7
4
+
5
+ - Adding `isMobile` handlebars helper to determine if screen is < 768px
6
+
3
7
  ## 3.7.6
4
8
 
5
9
  - Removing all the `!window.Modalytics.privacyPreferencesDetected` conditionals (as we are no longer moving forward with this integration).
@@ -194,6 +194,17 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
194
194
  return index;
195
195
  }
196
196
  },
197
+ // Adding helper to check if mobile (< 768px)
198
+ {
199
+ name: 'isMobile',
200
+ fn: function(expression, options) {
201
+ if (window.innerWidth < 768) {
202
+ return options.fn(expression);
203
+ } else {
204
+ return options.inverse(expression);
205
+ }
206
+ }
207
+ },
197
208
  // Loop to go through and add each attribute defined in the attributes: {} object
198
209
  {
199
210
  name: 'addAttributes',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.7.6",
3
+ "version": "3.7.7-beta.1",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",