Skip to content
Snippets Groups Projects
Commit 97e2f5ca authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch '525-falscher-theme-auf-unterseiten' into 'development'

Resolve "Falscher Theme auf Unterseiten"

Closes #525

See merge request !941
parents 1b45897c f40f9509
No related branches found
No related tags found
2 merge requests!948Development,!941Resolve "Falscher Theme auf Unterseiten"
...@@ -26,6 +26,7 @@ elixir(function (mix) { ...@@ -26,6 +26,7 @@ elixir(function (mix) {
mix.scripts(['lib/jquery.js', 'lib/iframeResizer.contentWindow.min.js'], 'public/js/quicktips.js') mix.scripts(['lib/jquery.js', 'lib/iframeResizer.contentWindow.min.js'], 'public/js/quicktips.js')
mix.scripts(['scriptStartPage.js', 'results.js'], 'public/js/scriptStartPage.js'); mix.scripts(['scriptStartPage.js', 'results.js'], 'public/js/scriptStartPage.js');
mix.scripts(['scriptResultPage.js', 'results.js'], 'public/js/scriptResultPage.js'); mix.scripts(['scriptResultPage.js', 'results.js'], 'public/js/scriptResultPage.js');
mix.scripts(['scriptSubpages.js'], 'public/js/scriptSubpages.js');
mix.version(['css/themes/default.css', 'js/lib.js', 'js/quicktips.js']); mix.version(['css/themes/default.css', 'js/lib.js', 'js/quicktips.js']);
mix.less('metager/beitritt.less', 'public/css/beitritt.css') mix.less('metager/beitritt.less', 'public/css/beitritt.css')
mix.version(['css/beitritt.css']) mix.version(['css/beitritt.css'])
......
$(document).ready(function () {
if (localStorage) {
var theme = localStorage.getItem('theme');
if (theme != null) {
if ((theme.match(/,/g) || []).length != 3) {
localStorage.removeItem('theme');
} else {
theme = theme.split(',');
$('#theme').attr('href', '/css/theme.css.php?r=' + theme[0] + '&g=' + theme[1] + '&b=' + theme[2] + '&a=' + theme[3]);
}
}
}
});
\ No newline at end of file
...@@ -21,20 +21,20 @@ ...@@ -21,20 +21,20 @@
<li>{!! trans('datenschutz.policy.18') !!}</li> <li>{!! trans('datenschutz.policy.18') !!}</li>
<li>{!! trans('datenschutz.policy.19') !!}</li> <li>{!! trans('datenschutz.policy.19') !!}</li>
</ul> </ul>
<h2>{!! trans('datenschutz.twitter') !!}</h2> <h2>{!! trans('datenschutz.twitter') !!}</h2>
<pre><p>&gt; 7.4.2014 C. Schulzki-Haddouti @kooptech <pre><p>&gt; 7.4.2014 C. Schulzki-Haddouti @kooptech
&gt; MetaGer dürfte im Moment die sicherste Suchmaschine weltweit sein</p> &gt; MetaGer dürfte im Moment die sicherste Suchmaschine weltweit sein</p>
<p>&gt; 8.4.2014 Stiftung Datenschutz @DS_Stiftung <p>&gt; 8.4.2014 Stiftung Datenschutz @DS_Stiftung
&gt; Wenn das Suchergebnis anonym bleiben soll: @MetaGer, die gemeinnützige &gt; Wenn das Suchergebnis anonym bleiben soll: @MetaGer, die gemeinnützige
&gt; Suchmaschine aus #Hannover</p> &gt; Suchmaschine aus #Hannover</p>
<p>&gt; 8.4.2014 Markus Käkenmeister @markus2009 <p>&gt; 8.4.2014 Markus Käkenmeister @markus2009
&gt; Suchmaschine ohne Tracking</p> &gt; Suchmaschine ohne Tracking</p>
<p>&gt; 8.4.2014 Marko [~sHaKaL~] @mobilef0rensics <p>&gt; 8.4.2014 Marko [~sHaKaL~] @mobilef0rensics
&gt; Nice; anonymous Search and find with MetaGer</p> &gt; Nice; anonymous Search and find with MetaGer</p>
<p>&gt; 7.4.2014 Anfahrer @anfahrer <p>&gt; 7.4.2014 Anfahrer @anfahrer
&gt; Websuche mit #Datenschutz dank #MetaGer : Anonyme Suche und &gt; Websuche mit #Datenschutz dank #MetaGer : Anonyme Suche und
&gt; Ergebnisse via Proxy</p> &gt; Ergebnisse via Proxy</p>
<p>&gt; 8.4.2014 stupidit&eacute; pue @dummheitstinkt <p>&gt; 8.4.2014 stupidit&eacute; pue @dummheitstinkt
&gt; wow, is this the MetaGer I used in the end 90s in internet cafes??? &gt; wow, is this the MetaGer I used in the end 90s in internet cafes???
&gt; "Anonymes Suchen und Finden mit MetaGer | heise"</p></pre> &gt; "Anonymes Suchen und Finden mit MetaGer | heise"</p></pre>
@endsection @endsection
\ No newline at end of file
...@@ -316,7 +316,6 @@ ...@@ -316,7 +316,6 @@
</a> </a>
</li> </li>
</ul> </ul>
<script src="{{ elixir('js/lib.js') }}"></script>
<script src="{{ elixir('js/scriptStartPage.js') }}"></script> <script src="{{ elixir('js/scriptStartPage.js') }}"></script>
@endsection @endsection
......
...@@ -222,4 +222,6 @@ ...@@ -222,4 +222,6 @@
<img src="{{ action('ImageController@generateImage')}}?site={{ urlencode(url()->current()) }}" class="hidden" /> <img src="{{ action('ImageController@generateImage')}}?site={{ urlencode(url()->current()) }}" class="hidden" />
</div> </div>
</body> </body>
<script src="{{ elixir('js/lib.js') }}"></script>
<script src="{{ elixir('js/scriptSubPages.js') }}"></script>
</html> </html>
...@@ -65,6 +65,5 @@ ...@@ -65,6 +65,5 @@
<input id="plugin" class="btn btn-primary settings-btn" type="submit" value="{!! trans('settings.speichern.3') !!}"> <input id="plugin" class="btn btn-primary settings-btn" type="submit" value="{!! trans('settings.speichern.3') !!}">
</div> </div>
</form> </form>
<script src="{{ elixir('js/lib.js') }}"></script>
<script src="{{ elixir('js/settings.js') }}"></script> <script src="{{ elixir('js/settings.js') }}"></script>
@endsection @endsection
...@@ -77,6 +77,5 @@ ...@@ -77,6 +77,5 @@
</form>; </form>;
</textarea> </textarea>
@endif @endif
<script src="{{ elixir('js/lib.js') }}"></script>
<script src="{{ elixir('js/widgets.js') }}"></script> <script src="{{ elixir('js/widgets.js') }}"></script>
@endsection @endsection
...@@ -65,6 +65,5 @@ ...@@ -65,6 +65,5 @@
<input type="hidden" name="lang" value="{{ trans('websearch.head.6') }}"> <input type="hidden" name="lang" value="{{ trans('websearch.head.6') }}">
</form> </form>
</textarea> </textarea>
<script src="{{ elixir('js/lib.js') }}"></script>
<script src="{{ elixir('js/widgets.js') }}"></script> <script src="{{ elixir('js/widgets.js') }}"></script>
@endsection @endsection
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment