Skip to content

Commit 4753991

Browse files
committed
Trailing whitespace removal for mixins fix
1 parent fbce271 commit 4753991

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/web/mage/requirejs/mixins.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ define('mixins', [
114114
* @returns {Array} An array of paths to mixins.
115115
*/
116116
getMixins: function (path) {
117-
var config = module.config() || {}, mixins;
117+
var config = module.config() || {},
118+
mixins;
118119

119120
// fix for when urlArgs is set
120121
if (path.indexOf('?') !== -1) {
121122
path = path.substring(0, path.indexOf('?'));
122-
}
123-
123+
}
124124
mixins = config[path] || {};
125125

126126
return Object.keys(mixins).filter(function (mixin) {

0 commit comments

Comments
 (0)