From 9d0269ea976871eddfd1e632339e6244d6754500 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sun, 10 Jan 2016 09:04:57 -0800 Subject: [PATCH] fix(build): add ; after script - Add extra `;` so there is no issue when concatenating scripts Closes #5197 Fixes #5196 --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index a6b6e0fa35..8bd8eef548 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -433,7 +433,7 @@ module.exports = function(grunt) { .replace(/\\/g, '\\\\') .replace(/'/g, "\\'") .replace(/\r?\n/g, '\\n'); - js = `angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend(''); })`; + js = `angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend(''); });`; state.js.push(js); return state;