5 * Description: Theme based on Testbubble and optimized for Tablets.
6 * Version: Version 2013-05-08
7 * Author: Anne Walk, Devlon Duthied
8 * Author: Alex <https://red.pixelbits.de/channel/alex>
9 * Maintainer: Nomen Nominandum
10 * Screenshot: <a href="screenshot.png">Screenshot</a>
14 use Friendica\Core\Renderer;
15 use Friendica\Core\System;
17 function smoothly_init(App $a) {
18 Renderer::setActiveTemplateEngine('smarty3');
22 $baseurl = System::baseUrl($ssl_state);
23 $a->page['htmlhead'] .= <<< EOT
26 function insertFormatting(BBcode, id) {
27 var tmpStr = $("#comment-edit-text-" + id).val();
29 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
30 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
31 openMenu("comment-edit-submit-wrapper-" + id);
34 textarea = document.getElementById("comment-edit-text-" +id);
35 if (document.selection) {
37 selected = document.selection.createRange();
38 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
39 } else if (textarea.selectionStart || textarea.selectionStart == "0") {
40 var start = textarea.selectionStart;
41 var end = textarea.selectionEnd;
42 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
48 function cmtBbOpen(id) {
49 $(".comment-edit-bb-" + id).show();
51 function cmtBbClose(comment, id) {
52 $(".comment-edit-bb-" + id).hide();
54 $(document).ready(function() {
56 $('html').click(function() { $("#nav-notifications-menu" ).hide(); });
58 $('.group-edit-icon').hover(
60 $(this).addClass('icon'); $(this).removeClass('iconspacer');},
62 $(this).removeClass('icon'); $(this).addClass('iconspacer');}
65 $('.sidebar-group-element').hover(
67 id = $(this).attr('id');
68 $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
71 id = $(this).attr('id');
72 $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
76 $('.savedsearchdrop').hover(
78 $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');},
80 $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');}
83 $('.savedsearchterm').hover(
85 id = $(this).attr('id');
86 $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');},
89 id = $(this).attr('id');
90 $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');}
99 if (!is_null($cssFile)) {
100 $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
106 if (! function_exists('_js_in_foot')) {
107 function _js_in_foot() {
108 /** @purpose insert stuff in bottom of page
112 $baseurl = System::baseUrl($ssl_state);
113 $bottom['$baseurl'] = $baseurl;
114 $tpl = Renderer::getMarkupTemplate('bottom.tpl');
116 return $a->page['bottom'] = Renderer::replaceMacros($tpl, $bottom);