1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-20 04:41:29 +02:00

Merge pull request #540 from Dargmuesli/2.x

Prevent false mod_rewrite error
This commit is contained in:
Steve Clay
2016-06-24 23:39:40 -04:00
committed by GitHub

View File

@@ -12,7 +12,7 @@ var MUB = {
$.ajax({ $.ajax({
url : '../f=' + testUri + '&' + (new Date()).getTime(), url : '../f=' + testUri + '&' + (new Date()).getTime(),
success : function (data) { success : function (data) {
if (data === '1') { if (data === '1' || data === '1;') {
MUB._minRoot = '/min/'; MUB._minRoot = '/min/';
$('span.minRoot').html('/min/'); $('span.minRoot').html('/min/');
} else } else