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 +4 -0
- package/gulp-tasks/templates.js +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/gulp-tasks/templates.js
CHANGED
|
@@ -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',
|