From 2644e72ad5fd1dc0b064873f53cbf5755b32b54f Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 19 Oct 2020 17:01:10 +0530 Subject: [PATCH] apply cache-busting to more ckeditor assets --- www/pad/inner.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/www/pad/inner.js b/www/pad/inner.js index b52275b4f..678b674a4 100644 --- a/www/pad/inner.js +++ b/www/pad/inner.js @@ -8,9 +8,6 @@ require(['/api/config'], function(ApiConfig) { } if (resource[resource.length - 1] !== '/' && resource.indexOf('ver=') === -1) { var args = ApiConfig.requireConf.urlArgs; - if (resource.indexOf('/bower_components/') !== -1) { - args = 'ver=' + window.CKEDITOR.timestamp; - } resource += (resource.indexOf('?') >= 0 ? '&' : '?') + args; } return resource;