Skip to content

Commit

Permalink
Merge pull request #177 from klewis0555/update_handlebars_4.7.7
Browse files Browse the repository at this point in the history
Updating handlebars.js and handlebars.runtime.js to version 4.7.7
  • Loading branch information
AlexRiedler committed Mar 18, 2021
2 parents 365bd0e + a90a00f commit 1117d94
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions vendor/assets/javascripts/handlebars.js
@@ -1,7 +1,7 @@
/**!
@license
handlebars v4.7.3
handlebars v4.7.7
Copyright (C) 2011-2019 by Yehuda Katz
Expand Down Expand Up @@ -278,7 +278,7 @@ return /******/ (function(modules) { // webpackBootstrap

var _internalProtoAccess = __webpack_require__(33);

var VERSION = '4.7.3';
var VERSION = '4.7.7';
exports.VERSION = VERSION;
var COMPILER_REVISION = 8;
exports.COMPILER_REVISION = COMPILER_REVISION;
Expand Down Expand Up @@ -1525,7 +1525,7 @@ return /******/ (function(modules) { // webpackBootstrap
loc: loc
});
}
return obj[name];
return container.lookupProperty(obj, name);
},
lookupProperty: function lookupProperty(parent, propertyName) {
var result = parent[propertyName];
Expand Down Expand Up @@ -3903,7 +3903,7 @@ return /******/ (function(modules) { // webpackBootstrap
return this.internalNameLookup(parent, name);
},
depthedLookup: function depthedLookup(name) {
return [this.aliasable('container.lookup'), '(depths, "', name, '")'];
return [this.aliasable('container.lookup'), '(depths, ', JSON.stringify(name), ')'];
},

compilerInfo: function compilerInfo() {
Expand Down
6 changes: 3 additions & 3 deletions vendor/assets/javascripts/handlebars.runtime.js
@@ -1,7 +1,7 @@
/**!
@license
handlebars v4.7.3
handlebars v4.7.7
Copyright (C) 2011-2019 by Yehuda Katz
Expand Down Expand Up @@ -209,7 +209,7 @@ return /******/ (function(modules) { // webpackBootstrap

var _internalProtoAccess = __webpack_require__(32);

var VERSION = '4.7.3';
var VERSION = '4.7.7';
exports.VERSION = VERSION;
var COMPILER_REVISION = 8;
exports.COMPILER_REVISION = COMPILER_REVISION;
Expand Down Expand Up @@ -1456,7 +1456,7 @@ return /******/ (function(modules) { // webpackBootstrap
loc: loc
});
}
return obj[name];
return container.lookupProperty(obj, name);
},
lookupProperty: function lookupProperty(parent, propertyName) {
var result = parent[propertyName];
Expand Down

0 comments on commit 1117d94

Please sign in to comment.