Skip to content

Commit

Permalink
replaced dev domain with *.wikitolearn-test.org
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Luca <[email protected]>
  • Loading branch information
tomaluca95 committed Dec 18, 2017
1 parent f196c20 commit 8866ba3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions WikiToLearnSkin.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public function executeHeader() {
<img class="logo__img" src="<?php echo $this->getImagePath("images/wikitolearn-logo.png") ?>">
<img class="logo__text" src="<?php echo $this->getImagePath("images/name.svg") ?>">
<?php
if($wiki_domain == "wikitolearn.vodka")
if (strpos($wiki_domain, 'wikitolearn-test.org') !== false)
echo "<span class='logo__subtitle'>dev</span>";
?>
</a>
Expand Down Expand Up @@ -430,7 +430,7 @@ public function executeHome() {
</div>
<div class="howto__point howto__point--faded" data-image-name="book">
<div class="howto__title">
<i class="fa fa-book text-wtl--yellow"></i>
<i class="fa fa-book text-wtl--yellow"></i>
<?php echo $this->getMessage('wikitolearnskin-home-howto-book-title'); ?>
</div>
<div class="howto__description">
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ gulp.task('watch', ['sass'], function () {

gulp.task('browser-sync', function() {
browserSync.init({
proxy: "it.tuttorotto.biz"
proxy: "it.local.wikitolearn-test.org"
});

gulp.watch("WikiToLearnSkin.php").on('change', browserSync.reload);
gulp.watch("build/**/*").on('change', browserSync.reload);
gulp.watch("images/**/*").on('change', browserSync.reload);
});
});

0 comments on commit 8866ba3

Please sign in to comment.