NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Oracle Content and Experience Cloud Service - better folder pagination // @namespace https://jonathanhult.com // @description Makes folder pagination always visible in Oracle Content and Experience Cloud Service. // @version 1.0.1 // @copyright 2018, jhult (https://jonathanhult.com) // @license MIT; https://opensource.org/licenses/MIT // @icon https://bbcdn.githack.com/jhult/oracle-vector-images/raw/master/cloud/content_and_experience.svg // @require https://gistcdn.githack.com/BrockA/2625891/raw/waitForKeyElements.js // @include https://*.documents.*.oraclecloud.com/* // @run-at document-end // @grant none // ==/UserScript== waitForKeyElements('.containerview-pager', movePagination); function movePagination($pagerEl) { var $detail = $('.containerview-detail'); $pagerEl.appendTo($detail); }