Files
codefever/application/views/newpage/footer_include.php
Carney Wu d3de96487f initial version (#1)
* fix(Useless Code): remove useless code

* feat(Deploy Scripts): add deploy scripts

* fix(Delopy Script): change settings

* fix(Deploy Script): fix ssh-keygen script

* fix(Deploy Script): change env file path

* feat(Deploy Script): add db migration

* fix(Deploy script): change script

* feat(Deploy Script): add sql file to create database

* fix(Deploy Script): add composer support

* fix(Deploy Script): add composer

* fix(Service Script): add http gateway

* fix(Deploy Script): add git path

* fix(Deploy Script): fix setting bugs

* fix(Init Script): get user from config

* fix(Service): adjust run users

* feat(Doc): add doc

* fix(Doc): change docs

* fix(Deploy script): change owner of storage path

* feat: codefever-community documentation system

* fix(Doc): doc details page style

* feat: fix page navigation

* fix(SQL File): fix db file fit MySQL 5.7

* fix(FileTree): empty repository display

* fix: fix helper navigation

* docs(zh-cn essential part):

* fix(Doc Style): change markdown.css

* docs(contribution doc):

* fix: unified page style

* docs(Readme): add readme

* build(Build):

Co-authored-by: cubic <carneywu@pgyer.com>
Co-authored-by: pololi <pololi@pgyer.com>
Co-authored-by: yangchen <chenyang@pgyer.com>
2022-01-19 17:21:59 +08:00

23 lines
1.0 KiB
PHP
Executable File

<script src="/static/vendor/jquery-3.5.0/jquery.min.js" type="text/javascript"></script>
<script src="/static/vendor/bootstrap-4.4.1/js/bootstrap.bundle.min.js" type="text/javascript"></script>
<script src="/static/vendor/jquery-validation-1.19.1/dist/jquery.validate.min.js" type="text/javascript"></script>
<script src="/static/<?php echo RELEASENUMBER;?>/script/common.js" type="text/javascript"></script>
<script src="/static/<?php echo RELEASENUMBER;?>/script/scrollAnimation.js" type="text/javascript"></script>
<script src="/static/vendor/intltel/js/intlTelInput.js"></script>
<script src="/static/vendor/toastr/toastr.js" type="text/javascript"></script>
<script src="/static/<?php echo RELEASENUMBER;?>/script/marked.min.js" type="text/javascript"></script>
<script>
function pregEmail(email) {
return /^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/.test(email)
}
function pregTel(tel, isChina) {
if (isChina) {
return /^1[3456789]\d{9}$/.test(tel);
}
return /^[0-9]{5,11}$/.test(tel)
}
</script>