From 71690ae39d1913e7f58635494859400fb54553d7 Mon Sep 17 00:00:00 2001 From: grassick Date: Wed, 18 Feb 2015 10:57:02 -0500 Subject: [PATCH] default is a reserved word Quoting it to fix in older browsers, especially Android 2.3.x. --- runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.js b/runtime.js index 1896fa9db..306207cd2 100644 --- a/runtime.js +++ b/runtime.js @@ -1,3 +1,3 @@ // Create a simple path alias to allow browserify to resolve // the runtime on a supported path. -module.exports = require('./dist/cjs/handlebars.runtime').default; +module.exports = require('./dist/cjs/handlebars.runtime')['default'];