В кодовом редакторе я ввожу старый домен, и замену на новый, нажимаю заменить все. Разве оно не должно поменять все попавшееся адреса?
var total = 0
if (include(Arrays, thisID)) {
.......
total ++
} else {
Arrays.push(thisID);
total ++
}
$('span').html(total)
function scss() {
return gulp
.src(dir.src + '/scss/*.scss', { sourcemaps: !isProd })
.pipe(require('gulp-sass')({ outputStyle: isProd ? 'compressed' : "expanded" }))
.pipe(gulp.dest(dir.build + '/css', { sourcemaps: true }))
}
@charset "UTF-8";
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #000;
text-align: left;
background-color: #fff;
}