repo stringlengths 5 106 | file_url stringlengths 78 301 | file_path stringlengths 4 211 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:56:49 2026-01-05 02:23:25 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-typescript/src/watermarking/main.js | delivery/media/watermarking/examples/wm-typescript/src/watermarking/main.js | import { logger } from 'log';
import { TokenType, Watermarking} from './media-delivery-watermarking.js';
//Required only for customer that needs to validate short token as per the spec.
import { ShortTokenValidator } from './short-token-validator.js';
//CWT Token will be used. Watermarking module also support JWT base... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-typescript/src/watermarking/jwt.js | delivery/media/watermarking/examples/wm-typescript/src/watermarking/jwt.js | /** @preserve @version 1.0.1 */
import { crypto } from "crypto";
import { base64url, TextEncoder } from "encoding";
class JWTUtil {
static isEmptyString(str) {
return !str || 0 === str.trim().length;
}
}
class JWTValidator {
constructor(jwtOptions) {
this.jwtOptions = jwtOptions || {}, th... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-typescript/src/watermarking/cbor-x.js | delivery/media/watermarking/examples/wm-typescript/src/watermarking/cbor-x.js | let decoder, src, srcEnd;
try {
decoder = new TextDecoder;
} catch (error) {}
let position$1 = 0;
const RECORD_DEFINITIONS_ID = 57342, RECORD_INLINE_ID = 57343, BUNDLED_STRINGS_ID = 57337, STOP_CODE = {};
let currentStructures, srcString, bundledStrings$1, referenceMap, packedValues, dataView, restoreMapsAsObje... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | true |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-typescript/src/watermarking/cwt.js | delivery/media/watermarking/examples/wm-typescript/src/watermarking/cwt.js | /** @preserve @version 1.1.1 */
import { crypto } from "crypto";
import { Encoder, Decoder } from "./cbor-x.js";
const COSE_Mac0 = 17, COSE_Mac = 97, COSE_Sign = 98, COSE_Sign1 = 18, COSE_Encrypt0 = 16, COSE_Encrypt = 96, coseAlgTags = {
5: "HMAC 256/256",
"-7": "ES256"
}, HeaderLabelToKey_alg = 1, HeaderLabe... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/media-delivery-watermarking.js | delivery/media/watermarking/examples/wm-indirect/media-delivery-watermarking.js | /** @preserve @version 1.1.0 */
import { WritableStream } from "streams";
import { crypto, pem2ab } from "crypto";
import { TextEncoder, base16, base64url } from "encoding";
import { logger } from "log";
import { httpRequest } from "http-request";
import { decode, Encoder } from "./cbor-x.js";
import { CWTValidat... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/main.js | delivery/media/watermarking/examples/wm-indirect/main.js | import { logger } from 'log';
import { TokenType, Watermarking} from './media-delivery-watermarking.js';
//Obtained the required vendor specific code to generate TMID from the vendor
import { vendorAlgorithm } from './vendor-algorithm.js';
//Map each vendor specific code with the vendor identifier. This identifier shou... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/jwt.js | delivery/media/watermarking/examples/wm-indirect/jwt.js | /** @preserve @version 1.0.1 */
import { crypto } from "crypto";
import { base64url, TextEncoder } from "encoding";
class JWTUtil {
static isEmptyString(str) {
return !str || 0 === str.trim().length;
}
}
class JWTValidator {
constructor(jwtOptions) {
this.jwtOptions = jwtOptions || {}, th... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/cbor-x.js | delivery/media/watermarking/examples/wm-indirect/cbor-x.js | let decoder, src, srcEnd;
try {
decoder = new TextDecoder;
} catch (error) {}
let position$1 = 0;
const RECORD_DEFINITIONS_ID = 57342, RECORD_INLINE_ID = 57343, BUNDLED_STRINGS_ID = 57337, STOP_CODE = {};
let currentStructures, srcString, bundledStrings$1, referenceMap, packedValues, dataView, restoreMapsAsObje... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | true |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/vendor-algorithm.js | delivery/media/watermarking/examples/wm-indirect/vendor-algorithm.js | //This code just demonstrate the sample interface of the vendorAlgorithm class.
class VendorAlgorithm {
async generateTmid(payload, secretKey) {
//Vendor specific logic to generate TMID in hex.
//Customer needs to obtain/implement with permissions from respective vendor as this could be protected by cop... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/examples/wm-indirect/cwt.js | delivery/media/watermarking/examples/wm-indirect/cwt.js | /** @preserve @version 1.1.1 */
import { crypto } from "crypto";
import { Encoder, Decoder } from "./cbor-x.js";
const COSE_Mac0 = 17, COSE_Mac = 97, COSE_Sign = 98, COSE_Sign1 = 18, COSE_Encrypt0 = 16, COSE_Encrypt = 96, coseAlgTags = {
5: "HMAC 256/256",
"-7": "ES256"
}, HeaderLabelToKey_alg = 1, HeaderLabe... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/lib/media-delivery-watermarking.js | delivery/media/watermarking/lib/media-delivery-watermarking.js | /** @preserve @version 1.1.0 */
import { WritableStream } from "streams";
import { crypto, pem2ab } from "crypto";
import { TextEncoder, base16, base64url } from "encoding";
import { logger } from "log";
import { httpRequest } from "http-request";
import { decode, Encoder } from "./cbor-x.js";
import { CWTValidat... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/lib/jwt.js | delivery/media/watermarking/lib/jwt.js | /** @preserve @version 1.0.1 */
import { crypto } from "crypto";
import { base64url, TextEncoder } from "encoding";
class JWTUtil {
static isEmptyString(str) {
return !str || 0 === str.trim().length;
}
}
class JWTValidator {
constructor(jwtOptions) {
this.jwtOptions = jwtOptions || {}, th... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/lib/cbor-x.js | delivery/media/watermarking/lib/cbor-x.js | let decoder, src, srcEnd;
try {
decoder = new TextDecoder;
} catch (error) {}
let position$1 = 0;
const RECORD_DEFINITIONS_ID = 57342, RECORD_INLINE_ID = 57343, BUNDLED_STRINGS_ID = 57337, STOP_CODE = {};
let currentStructures, srcString, bundledStrings$1, referenceMap, packedValues, dataView, restoreMapsAsObje... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | true |
akamai/edgeworkers-examples | https://github.com/akamai/edgeworkers-examples/blob/2f8cbadcf293b1d37628327ed11f5c4a9399c200/delivery/media/watermarking/lib/cwt.js | delivery/media/watermarking/lib/cwt.js | /** @preserve @version 1.1.1 */
import { crypto } from "crypto";
import { Encoder, Decoder } from "./cbor-x.js";
const COSE_Mac0 = 17, COSE_Mac = 97, COSE_Sign = 98, COSE_Sign1 = 18, COSE_Encrypt0 = 16, COSE_Encrypt = 96, coseAlgTags = {
5: "HMAC 256/256",
"-7": "ES256"
}, HeaderLabelToKey_alg = 1, HeaderLabe... | javascript | Apache-2.0 | 2f8cbadcf293b1d37628327ed11f5c4a9399c200 | 2026-01-05T03:36:16.776355Z | false |
Defelo/nixpkgs-review-gha | https://github.com/Defelo/nixpkgs-review-gha/blob/1407f1f43bbd3852faab497fd75dd9759c1df15a/shortcut.js | shortcut.js | // ==UserScript==
// @name nixpkgs-review-gha
// @match https://github.com/*
// @run-at document-idle
// ==/UserScript==
const repo = "Defelo/nixpkgs-review-gha";
const reviewDefaults = ({ title, commits, labels, author, authoredByMe, hasLinuxRebuilds, hasDarwinRebuilds }) => {
const darwinSandbox... | javascript | MIT | 1407f1f43bbd3852faab497fd75dd9759c1df15a | 2026-01-05T03:36:18.299270Z | false |
StanKocken/MaterialResume | https://github.com/StanKocken/MaterialResume/blob/8ac3ba1f19f92b009b786710276bdf78d898963b/js/materialize.js | js/materialize.js | /*!
* Materialize v0.95.3 (http://materializecss.com)
* Copyright 2014-2015 Materialize
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
*/
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to of... | javascript | MIT | 8ac3ba1f19f92b009b786710276bdf78d898963b | 2026-01-05T03:36:18.750766Z | true |
StanKocken/MaterialResume | https://github.com/StanKocken/MaterialResume/blob/8ac3ba1f19f92b009b786710276bdf78d898963b/js/materialize.min.js | js/materialize.min.js | /*!
* Materialize v0.95.3 (http://materializecss.com)
* Copyright 2014-2015 Materialize
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
*/
function toast(a,b,c,d){function e(a){var b=$("<div class='toast'></div>").addClass(c).html(a);return b.hammer({prevent_default:!1}).bind("p... | javascript | MIT | 8ac3ba1f19f92b009b786710276bdf78d898963b | 2026-01-05T03:36:18.750766Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/layui.all.js | src/main/resources/static/layui.all.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
| javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/layui.js | src/main/resources/static/layui.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;!function(e){"use strict";var t=document,n={modules:{},status:{},timeout:10,event:{}},o=function(){this.v="2.2.5"},r=function(){var e=t.currentScript?t.currentScript.src:function(){for(var e,n=t.scripts,o=n.length-1,r=o;r>0;r--)if("interactive"===n[r].readyStat... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/r3_skin.js | src/main/resources/static/im/js/r3_skin.js |
/**
* Created by R3_PC_3 on 2016/9/7.
*/
<!-- 换肤 -->
//读取cookie,换肤
var skin = document.getElementById("skin");//拿到link元素
var cookieval = document.cookie;
var skipval = readcookie("skin");
if (skipval) {//如果cookie不存在记录
skin.href = "/assets/2.0/css/default/R3.css";
} else {
// skin.href = skipval + ".css";//有记... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/r3_call.js | src/main/resources/static/im/js/r3_call.js | // 咨询页面
document.write("<div class=\"service\" id=\"press\">"+
"<div class=\"icon-box\" style=\"width:100%;height:20px\"></div>"+
"<div class=\"white-box\">"+"<h1>在线客服"+
"<span class=\"small\">系统,你所</span>"+"想要"
+"<span class=\"small\">的:</span>"+"</h1>"
+"<h2>功能/速度/数据/稳定/服务</h2>"
+"<h3>应有尽有.......</h3>"
+"<img... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/socket.io.js | src/main/resources/static/im/js/socket.io.js | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.io = f()}})(fu... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/kindeditor-all-min.js | src/main/resources/static/im/js/kindeditor/kindeditor-all-min.js | /* KindEditor 4.1.11 (2016-03-31), Copyright (C) kindsoft.net, Licence: http://kindeditor.net/license.php */
!function(window,undefined){function _isArray(a){return a?"[object Array]"===Object.prototype.toString.call(a):!1}function _isFunction(a){return a?"[object Function]"===Object.prototype.toString.call(a):!1}funct... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/kindeditor.js | src/main/resources/static/im/js/kindeditor/kindeditor.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2013 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @website http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
* @version 4.1.10 (2013-11-2... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/kindeditor-min.js | src/main/resources/static/im/js/kindeditor/kindeditor-min.js | /* KindEditor 4.1.10 (2013-11-23), Copyright (C) kindsoft.net, Licence: http://www.kindsoft.net/license.php */(function(w,i){function Z(a){if(!a)return!1;return Object.prototype.toString.call(a)==="[object Array]"}function wa(a){if(!a)return!1;return Object.prototype.toString.call(a)==="[object Function]"}function J(a,... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/kindeditor-all.js | src/main/resources/static/im/js/kindeditor/kindeditor-all.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2016 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @website http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
* @version 4.1.11 (2016-03-3... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/ko.js | src/main/resources/static/im/js/kindeditor/lang/ko.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Composite <ukjinplant@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
***************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/ar.js | src/main/resources/static/im/js/kindeditor/lang/ar.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
* Arabic Translation By daif al... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/zh-TW.js | src/main/resources/static/im/js/kindeditor/lang/zh-TW.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/zh-CN.js | src/main/resources/static/im/js/kindeditor/lang/zh-CN.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/en.js | src/main/resources/static/im/js/kindeditor/lang/en.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/lang/ru.js | src/main/resources/static/im/js/kindeditor/lang/ru.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
* Translated to Russian by Vale... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/wordpaste/wordpaste.js | src/main/resources/static/im/js/kindeditor/plugins/wordpaste/wordpaste.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/lineheight/lineheight.js | src/main/resources/static/im/js/kindeditor/plugins/lineheight/lineheight.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/baidumap/baidumap.js | src/main/resources/static/im/js/kindeditor/plugins/baidumap/baidumap.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/insertfile/insertfile.js | src/main/resources/static/im/js/kindeditor/plugins/insertfile/insertfile.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/image/image.js | src/main/resources/static/im/js/kindeditor/plugins/image/image.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/anchor/anchor.js | src/main/resources/static/im/js/kindeditor/plugins/anchor/anchor.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/preview/preview.js | src/main/resources/static/im/js/kindeditor/plugins/preview/preview.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/pagebreak/pagebreak.js | src/main/resources/static/im/js/kindeditor/plugins/pagebreak/pagebreak.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/code/prettify.js | src/main/resources/static/im/js/kindeditor/plugins/code/prettify.js | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.to... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/code/code.js | src/main/resources/static/im/js/kindeditor/plugins/code/code.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/multiimage/multiimage.js | src/main/resources/static/im/js/kindeditor/plugins/multiimage/multiimage.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/emoticons/emoticons.js | src/main/resources/static/im/js/kindeditor/plugins/emoticons/emoticons.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/plainpaste/plainpaste.js | src/main/resources/static/im/js/kindeditor/plugins/plainpaste/plainpaste.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/filemanager/filemanager.js | src/main/resources/static/im/js/kindeditor/plugins/filemanager/filemanager.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/autoheight/autoheight.js | src/main/resources/static/im/js/kindeditor/plugins/autoheight/autoheight.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/flash/flash.js | src/main/resources/static/im/js/kindeditor/plugins/flash/flash.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/media/media.js | src/main/resources/static/im/js/kindeditor/plugins/media/media.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/clearhtml/clearhtml.js | src/main/resources/static/im/js/kindeditor/plugins/clearhtml/clearhtml.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/template/template.js | src/main/resources/static/im/js/kindeditor/plugins/template/template.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/map/map.js | src/main/resources/static/im/js/kindeditor/plugins/map/map.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/link/link.js | src/main/resources/static/im/js/kindeditor/plugins/link/link.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/fixtoolbar/fixtoolbar.js | src/main/resources/static/im/js/kindeditor/plugins/fixtoolbar/fixtoolbar.js | /**
* Created by chenyihong on 14/12/4.
*/
KindEditor.plugin('fixtoolbar', function (K) {
var self = this;
if (!self.fixToolBar) {
return;
}
function init() {
var toolbar = K('.ke-toolbar');
var originY = toolbar.pos().y;
K(window).bind('scroll', function () {
... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/quickformat/quickformat.js | src/main/resources/static/im/js/kindeditor/plugins/quickformat/quickformat.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/im/js/kindeditor/plugins/table/table.js | src/main/resources/static/im/js/kindeditor/plugins/table/table.js | /*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/tree.js | src/main/resources/static/lay/modules/tree.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(e){"use strict";var o=layui.$,a=layui.hint(),i="layui-tree-enter",r=function(e){this.options=e},t={arrow:["",""],checkbox:["",""],radio:["",""],branch:["",""],leaf:"&... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/form.js | src/main/resources/static/lay/modules/form.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("layer",function(e){"use strict";var t=layui.$,i=layui.layer,a=layui.hint(),n=layui.device(),l="form",r=".layui-form",s="layui-this",o="layui-hide",u="layui-disabled",c=function(){this.config={verify:{required:[/[\S]+/,"必填项不能为空"],phone:[/^1\d{10}$/... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/carousel.js | src/main/resources/static/lay/modules/carousel.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/upload.js | src/main/resources/static/lay/modules/upload.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("layer",function(e){"use strict";var i=layui.$,t=layui.layer,n=layui.hint(),a=layui.device(),o={config:{},set:function(e){var t=this;return t.config=i.extend({},t.config,e),t},on:function(e,i){return layui.onevent.call(this,r,e,i)}},l=function(){va... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/laytpl.js | src/main/resources/static/lay/modules/laytpl.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define(function(e){"use strict";var r={open:"{{",close:"}}"},c={exp:function(e){return new RegExp(e,"g")},query:function(e,c,t){var o=["#([\\s\\S])+?","([^{#}])*?"][e||0];return n((c||"")+r.open+o+r.close+(t||""))},escape:function(e){return String(e||"").... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/element.js | src/main/resources/static/lay/modules/element.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(i){"use strict";var t=layui.$,a=(layui.hint(),layui.device()),e="element",l="layui-this",n="layui-show",s=function(){this.config={}};s.prototype.set=function(i){var a=this;return t.extend(!0,a.config,i),a},s.prototype.on=function(... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/mobile.js | src/main/resources/static/lay/modules/mobile.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
| javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/table.js | src/main/resources/static/lay/modules/table.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define(["laytpl","laypage","layer","form"],function(e){"use strict";var t=layui.$,i=layui.laytpl,a=layui.laypage,l=layui.layer,n=layui.form,o=layui.hint(),r=layui.device(),d={config:{checkName:"LAY_CHECKED",indexName:"LAY_TABLE_INDEX"},cache:{},index:layu... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/jquery.js | src/main/resources/static/lay/modules/jquery.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/laypage.js | src/main/resources/static/lay/modules/laypage.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define(function(e){"use strict";var a=document,t="getElementById",n="getElementsByTagName",i="laypage",r="layui-disabled",u=function(e){var a=this;a.config=e||{},a.config.index=++s.index,a.render(!0)};u.prototype.type=function(){var e=this.config;if("obje... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/laydate.js | src/main/resources/static/lay/modules/laydate.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;!function(){"use strict";var e=window.layui&&layui.define,t={getPath:function(){var e=document.currentScript?document.currentScript.src:function(){for(var e,t=document.scripts,n=t.length-1,a=n;a>0;a--)if("interactive"===t[a].readyState){e=t[a].src;break}return ... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/flow.js | src/main/resources/static/lay/modules/flow.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(e){"use strict";var l=layui.$,o=function(e){},t='<i class="layui-anim layui-anim-rotate layui-anim-loop layui-icon "></i>';o.prototype.load=function(e){var o,i,n,r,a=this,c=0;e=e||{};var f=l(e.elem);if(f[0]){var m=l(e.scro... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/layer.js | src/main/resources/static/lay/modules/layer.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;!function(e,t){"use strict";var i,n,a=e.layui&&layui.define,o={getPath:function(){var e=document.currentScript?document.currentScript.src:function(){for(var e,t=document.scripts,i=t.length-1,n=i;n>0;n--)if("interactive"===t[n].readyState){e=t[n].src;break}retur... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/util.js | src/main/resources/static/lay/modules/util.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(e){"use strict";var t=layui.$,i={fixbar:function(e){var i,o,a="layui-fixbar",r="layui-fixbar-top",n=t(document),l=t("body");e=t.extend({showHeight:200},e),e.bar1=e.bar1===!0?"":e.bar1,e.bar2=e.bar2===!0?"":e.bar2,e... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/layedit.js | src/main/resources/static/lay/modules/layedit.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define(["layer","form"],function(t){"use strict";var e=layui.$,i=layui.layer,a=layui.form,l=(layui.hint(),layui.device()),n="layedit",o="layui-show",r="layui-disabled",c=function(){var t=this;t.index=0,t.config={tool:["strong","italic","underline","del","... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/lay/modules/code.js | src/main/resources/static/lay/modules/code.js | /** layui-v2.2.5 MIT License By https://www.layui.com */
;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/template.js | src/main/resources/static/js/template.js | /*!
* template.js v0.7.1 (https://github.com/yanhaijing/template.js)
* API https://github.com/yanhaijing/template.js/blob/master/doc/api.md
* Copyright 2015 yanhaijing. All Rights Reserved
* Licensed under MIT (https://github.com/yanhaijing/template.js/blob/master/MIT-LICENSE.txt)
*/
;(function(root, factory) {
... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery-3.1.0.min.js | src/main/resources/static/js/jquery-3.1.0.min.js | /*! jQuery v3.1.0 | (c) jQuery Foundation | jquery.org/license */
!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?wi... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/UKeFu-CallOut.js | src/main/resources/static/js/UKeFu-CallOut.js | /**
*权限数据采集
*/
$(document).ready(function(){
$('.ukefu-phone-number').addClass("ukefu-phone-class");
$('.ukefu-phone-number').on("click" , function(){
var phonenumber = $(this).text().trim();
if(phonenumber != ''){
top.layer.confirm('请确认是否拨打号码 ‘'+phonenumber+'’', {icon: 3, title:'拨打号码'}, function(index){
... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ukefu.js | src/main/resources/static/js/ukefu.js | var layer , iframe , layerwin , cursession ;
$(document).ready(function(){
var hide ;
$('.dropdown-menu').on("click" , function(){
var distance = getDistance(this);
if(hide = true){
$(this).closest(".ukefu-btn-group").addClass("open");
}else{
$(this).closest(".ukefu-btn-group").removeClass("open");
}
... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/raphael-min.js | src/main/resources/static/js/raphael-min.js | /*
* Raphael 1.5.2 - JavaScript Vector Library
*
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://raphaeljs.com/license.html) license.
*/
| javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery.hotkeys.min.js | src/main/resources/static/js/jquery.hotkeys.min.js | //Download by http://www.jb51.net
(function(jQuery){jQuery.fn.__bind__=jQuery.fn.bind;jQuery.fn.__unbind__=jQuery.fn.unbind;jQuery.fn.__find__=jQuery.fn.find;var hotkeys={version:'0.7.9',override:/keypress|keydown|keyup/g,triggersMap:{},specialKeys:{27:'esc',9:'tab',32:'space',13:'return',8:'backspace',145:'scroll',20:... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery.orgchart.js | src/main/resources/static/js/jquery.orgchart.js | /*
* jQuery OrgChart Plugin
* https://github.com/dabeng/OrgChart
*
* Demos of jQuery OrgChart Plugin
* http://dabeng.github.io/OrgChart/
*
* Copyright 2016, dabeng
* http://dabeng.github.io/
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
'use strict';
(function(factory) {
... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/UCKeFu_IM.v1.js | src/main/resources/static/js/UCKeFu_IM.v1.js | var title = "UCKeFu-全渠道客服系统" ;
var socket , newuser = [] , newmessage = [] , ring = [];
newuser['mp3'] = '/images/new.mp3';
newmessage['mp3'] = '/images/message.mp3';
ring['mp3'] = '/images/ring.mp3';
$(document).ready(function(){
socket = io.connect(schema+'://'+hostname+':'+port+'/im/agent?orgi='+orgi+"&userid=... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery.darktooltip.js | src/main/resources/static/js/jquery.darktooltip.js | /*
* DarkTooltip v0.4.0
* Simple customizable tooltip with confirm option and 3d effects
* (c)2014 Rubén Torres - rubentdlh@gmail.com
* Released under the MIT license
*/
(function($) {
function DarkTooltip(element, options){
this.bearer = element;
this.options = options;
this.hideEvent;
this.mouseOverMo... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery.form.js | src/main/resources/static/js/jquery.form.js | /*!
* jQuery Form Plugin
* version: 3.18 (28-SEP-2012)
* @requires jQuery v1.5 or later
*
* Examples and documentation at: http://malsup.com/jquery/form/
* Project repository: https://github.com/malsup/form
* Dual licensed under the MIT and GPL licenses:
* http://malsup.github.com/mit-license.txt
* http:... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery-ui-1.10.2.custom.min.js | src/main/resources/static/js/jquery-ui-1.10.2.custom.min.js | /*! jQuery UI - v1.10.2 - 2013-04-02
* http://jqueryui.com
* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.selectable.js, jquery.ui.sortable.js, jquery.ui.accordion.js, jquery.ui.autocomplete... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/audioplayer.min.js | src/main/resources/static/js/audioplayer.min.js | /*
By Osvaldas Valutis, www.osvaldas.info
Available for use under the MIT License
*/
(function(e,t,n,r){var i="ontouchstart"in t,s=i?"touchstart":"mousedown",o=i?"touchmove":"mousemove",u=i?"touchend":"mouseup",a=i?"touchcancel":"mouseup",f=function(e){var t=e/3600,n=Math.floor(t),r=e%3600/60,i=Math.floor(r),s=Math.... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/echarts.common.min.js | src/main/resources/static/js/echarts.common.min.js | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.echarts=e():t.echarts=e()}(this,function(){return function(t){function e(n){if(i[n])return i[n].exports;var r=i[n]={exports:{},id:n,loaded:!1};return t[... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/jquery-1.10.2.min.js | src/main/resources/static/js/jquery-1.10.2.min.js | /*! jQuery v1.10.2 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
//@ sourceMappingURL=jquery-1.10.2.min.map
*/
(function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.2",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/UKeFu-InfoAcq.js | src/main/resources/static/js/UKeFu-InfoAcq.js | /**
*权限数据采集
*/
$(document).ready(function(){
$('a').on("click" , function(){
var title = $(this).data("title");
var child = $(this).find("i");
var iconstr , icontext;
if(child.length > 0){
iconstr = child[0].outerHTML ;
icontext = child[0].innerHTML ;
}
if(typeof title == "undefined"){
title =... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/weixinAudio.js | src/main/resources/static/js/weixinAudio.js | (function() {
$.fn.weixinAudio = function(options) {
var $this = $(this);
var defaultoptions = {
autoplay:false,
src:'',
};
function Plugin($context) {
//dom
this.$context = $context;
this.$Audio = $context.children('#media');
this.Audio = this.$Audio[0];
this.$audio_area = $context.find(... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ztree/jquery.ztree.all.min.js | src/main/resources/static/js/ztree/jquery.ztree.all.min.js |
/*
* JQuery zTree core v3.5.28
* http://treejs.cn/
*
* Copyright (c) 2010 Hunter.z
*
* Licensed same as jquery - MIT License
* http://www.opensource.org/licenses/mit-license.php
*
* email: hunter.z@263.net
* Date: 2017-01-20
*/
(function(q){var H,I,J,K,L,M,u,r={},v={},w={},N={treeId:"",treeObj:null,view:{ad... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/worker-coffee.js | src/main/resources/static/js/ace/worker-coffee.js | "no use strict";(function(e){if(typeof e.window!="undefined"&&e.document)return;e.console=function(){var e=Array.prototype.slice.call(arguments,0);postMessage({type:"log",data:e})},e.console.error=e.console.warn=e.console.log=e.console.trace=e.console,e.window=e,e.ace=e,e.onerror=function(e,t,n,r,i){console.error("Work... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-scheme.js | src/main/resources/static/js/ace/mode-scheme.js | ace.define("ace/mode/scheme",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/scheme_highlight_rules"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("../tokenizer").Tokenizer,o=e("./scheme_highlight_rules").SchemeHighlightRules,u=function(){this.HighlightRules=o};r.in... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-jack.js | src/main/resources/static/js/ace/mode-jack.js | ace.define("ace/mode/jack",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/jack_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("../tokenizer").Tokenizer,o=e("./ja... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-objectivec.js | src/main/resources/static/js/ace/mode-objectivec.js | ace.define("ace/mode/objectivec",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/objectivec_highlight_rules","ace/mode/folding/cstyle"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("../tokenizer").Tokenizer,o=e("./objectivec_highlight_rules").ObjectiveCHighlightRule... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/theme-ambiance.js | src/main/resources/static/js/ace/theme-ambiance.js | ace.define("ace/theme/ambiance",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!0,t.cssClass="ace-ambiance",t.cssText=".ace-ambiance .ace_gutter {background-color: #3d3d3d;background-image: -moz-linear-gradient(left, #3D3D3D, #333);background-image: -ms-linear-gradient(left, #3D3D3D, #333);backgr... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-liquid.js | src/main/resources/static/js/ace/mode-liquid.js | ace.define("ace/mode/liquid",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/liquid_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("../tokenizer").Tokenizer,o=e("./liquid_highlight_rules").LiquidHighlight... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-erlang.js | src/main/resources/static/js/ace/mode-erlang.js | ace.define("ace/mode/erlang",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/erlang_highlight_rules","ace/mode/folding/cstyle"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("../tokenizer").Tokenizer,o=e("./erlang_highlight_rules").ErlangHighlightRules,u=e("./folding... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/theme-chaos.js | src/main/resources/static/js/ace/theme-chaos.js | ace.define("ace/theme/chaos",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!0,t.cssClass="ace-chaos",t.cssText=".ace-chaos .ace_gutter {background: #141414;color: #595959;border-right: 1px solid #282828;}.ace-chaos .ace_gutter-cell.ace_warning {background-image: none;background: #FC0;border-left... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/mode-pgsql.js | src/main/resources/static/js/ace/mode-pgsql.js | ace.define("ace/mode/pgsql",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/pgsql_highlight_rules","ace/range"],function(e,t,n){var r=e("../lib/oop"),i=e("../mode/text").Mode,s=e("../tokenizer").Tokenizer,o=e("./pgsql_highlight_rules").PgsqlHighlightRules,u=e("../range").Range,a=fu... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | true |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/theme-xcode.js | src/main/resources/static/js/ace/theme-xcode.js | ace.define("ace/theme/xcode",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-xcode",t.cssText="/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css (UUID: EE3AD170-2B7F-4DE1-B724-C75F13FE0085) */.ace-xcode .ace_gutter {background: #e8e8e8;color: #333}.ace-xcode .ace_print-margin {w... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
calanay/beimi | https://github.com/calanay/beimi/blob/5773bf2e19cd0bf9edabc4bfe67ce5d47371516f/src/main/resources/static/js/ace/theme-cobalt.js | src/main/resources/static/js/ace/theme-cobalt.js | ace.define("ace/theme/cobalt",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!0,t.cssClass="ace-cobalt",t.cssText=".ace-cobalt .ace_gutter {background: #011e3a;color: #fff}.ace-cobalt .ace_print-margin {width: 1px;background: #011e3a}.ace-cobalt {background-color: #002240;color: #FFFFFF}.ace-coba... | javascript | Apache-2.0 | 5773bf2e19cd0bf9edabc4bfe67ce5d47371516f | 2026-01-05T03:32:04.661106Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.