From 5b894546e0055ff9cf3def11a3384e0f9d22aca8 Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Sat, 3 Feb 2018 14:22:03 -0800 Subject: [PATCH] Remove - Closes #192 --- pages/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/editor.js b/pages/editor.js index 0f4b31a..3353519 100644 --- a/pages/editor.js +++ b/pages/editor.js @@ -32,7 +32,7 @@ import { getState, saveState } from '../lib/util' const removeQueryString = str => { const qI = str.indexOf('?') - return qI >= 0 ? str.substr(0, qI) : str + return (qI >= 0 ? str.substr(0, qI) : str).replace(/(?:.|\s)*<\/script>/g, '') } class Editor extends React.Component {