Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for clipboard (0.21 sec)

  1. src/main/webapp/js/clipboard.min.js

    /*!
     * clipboard.js v2.0.4
     * https://zenorocha.github.io/clipboard.js
     * 
     * Licensed MIT © Zeno Rocha
     */
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat May 28 04:16:16 GMT 2022
    - 10.5K bytes
    - Viewed (2)
  2. src/main/webapp/js/search.js

        $(this).css(
          "background-image",
          'url("' + contextPath + '/images/loading.gif")'
        );
        loadImage(this, $(this).attr("data-src"), IMG_LOADING_MAX);
      });
      
      var clipboard = new ClipboardJS(".url-copy");
      clipboard.on("success", function(e) {
        e.trigger.classList.remove("url-copy");
        e.trigger.classList.remove("far");
        e.trigger.classList.remove("fa-copy");
        e.trigger.classList.add("url-copied");
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 7.5K bytes
    - Viewed (1)
  3. src/main/webapp/WEB-INF/orig/view/search.jsp

    	<input type="hidden" id="contextPath" value="${contextPath}" />
    	<script type="text/javascript"
    		src="${fe:url('/js/jquery-3.6.3.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/clipboard.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  4. docs/sts/keycloak.md

    ### Configure Keycloak Realm
    
    - Go to Clients
      - Click on account
        - Settings
        - Change `Access Type` to `confidential`.
        - Save
      - Click on credentials tab
        - Copy the `Secret` to clipboard.
        - This value is needed for `MINIO_IDENTITY_OPENID_CLIENT_SECRET` for MinIO.
    
    - Go to Users
      - Click on the user
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 8.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/search.jsp

    	<input type="hidden" id="contextPath" value="${contextPath}" />
    	<script type="text/javascript"
    		src="${fe:url('/js/jquery-3.6.3.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/clipboard.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/searchResults.jsp

    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    					<c:if test="${clipboardCopyIcon}"><i class="far fa-copy url-copy" data-clipboard-text="${doc.url_link}"></i></c:if>
    					<cite>${f:h(doc.site_path)}</cite>
    				</div>
    				<div class="more">
    					<a href="#result${s.index}"><la:message
    							key="labels.search_result_more" /></a>
    				</div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					</div>
    					</c:if>
    					<div class="description">${doc.content_description}</div>
    				</div>
    				<div class="site text-truncate">
    					<c:if test="${clipboardCopyIcon}"><i class="far fa-copy url-copy" data-clipboard-text="${doc.url_link}"></i></c:if>
    					<cite>${f:h(doc.site_path)}</cite>
    				</div>
    				<div class="more">
    					<a href="#result${s.index}"><la:message
    							key="labels.search_result_more" /></a>
    				</div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  8. src/main/resources/fess_config.properties

    form.admin.max.input.size=10000
    form.admin.label.in.config.enabled=false
    form.admin.default.template.name=__TEMPLATE__
    osdd.link.enabled=auto
    clipboard.copy.icon.enabled=true
    
    # ----------------------------------------------------------
    #                                                 Permission
    #                                                     ------
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. auto */
        String OSDD_LINK_ENABLED = "osdd.link.enabled";
    
        /** The key of the configuration. e.g. true */
        String CLIPBOARD_COPY_ICON_ENABLED = "clipboard.copy.icon.enabled";
    
        /** The key of the configuration. e.g. admin */
        String AUTHENTICATION_ADMIN_USERS = "authentication.admin.users";
    
        /** The key of the configuration. e.g. admin */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
Back to top