Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 9d0269e

Browse files
committed
fix(build): add ; after script
- Add extra `;` so there is no issue when concatenating scripts Closes #5197 Fixes #5196
1 parent 7250ff3 commit 9d0269e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ module.exports = function(grunt) {
433433
.replace(/\\/g, '\\\\')
434434
.replace(/'/g, "\\'")
435435
.replace(/\r?\n/g, '\\n');
436-
js = `angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend('<style type="text/css">${css}</style>'); })`;
436+
js = `angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp() && angular.element(document).find('head').prepend('<style type="text/css">${css}</style>'); });`;
437437
state.js.push(js);
438438

439439
return state;

0 commit comments

Comments
 (0)