]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/js/theme.js
Merge pull request #2576 from rabuzarus/0806-PConfig
[friendica.git] / view / theme / frio / js / theme.js
index 928b04551cc0d2febb07162d19fe4a08550ec3f6..9be1b9456e8f8254d36e99f093f59d096d222d01 100644 (file)
@@ -1,3 +1,6 @@
+
+var jotcache = ''; //The jot cache. We use it as cache to restore old/original jot content
+
 $(document).ready(function(){
        //fade in/out based on scrollTop value
        $(window).scroll(function () {
@@ -68,24 +71,8 @@ $(document).ready(function(){
                if( $("#jot-popup").is(":hidden")) $("#topbar-second > .container > #navbar-button #jotOpen").hide();
        }
 
-       // move shared content in it's own DIV (so we can style it better)
-       $('.wall-item-body .shared_content').each(function() {
-               // create a DIV after ".shared_content" where we will putt in the shared_header
-               // and the "shared_content"
-               $(this).after('<div class="shared-content-wrapper content-card"></div>');
-               // get the shared_header
-               var sheader = $(this).prev();
-               // get the shared-content-wrapper which we have created above
-               var swrapper = $(this).next();
-               // move the "shared_header into the new shared_content DIV
-               $(swrapper).append(sheader);
-               // move the "shared_content" into the new DIV
-               $(swrapper).append(this);
-       });
-
-
        // show bulk deletion button at network page if checkbox is checked
-       $('input.item-select').change(function(){
+       $("body").change("input.item-select", function(){
                var checked = false;
 
                // We need to get all checked items, so it would close the delete button
@@ -130,6 +117,9 @@ $(document).ready(function(){
                }
        });
 
+       // initialize the bootstrap-select
+       $('.selectpicker').selectpicker();
+
 
 });
 //function commentOpenUI(obj, id) {