Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating handlebars.js and handlebars.runtime.js to version 4.7.7 #177

Merged
merged 1 commit into from Mar 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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