Initial commit.

This commit is contained in:
dcooperdalrymple
2021-02-19 16:43:21 -06:00
commit 22f6c8188e
206 changed files with 33366 additions and 0 deletions

43
assets/js/post.js Normal file
View File

@@ -0,0 +1,43 @@
/*
Plugin Name: OgreAlert
Plugin URI: https://plugins.cleverogre.com/plugin/ogrealert/
Description: OgreAlert is a plugin developed by CleverOgre in Pensacola, Florida.
Version: 0.1.7
Author: CleverOgre
Author URI: https://cleverogre.com/
Icon1x: https://plugins.cleverogre.com/plugin/ogrealert/?asset=icon-sm
Icon2x: https://plugins.cleverogre.com/plugin/ogrealert/?asset=icon
BannerHigh: https://plugins.cleverogre.com/plugin/ogrealert/?asset=banner
BannerLow: https://plugins.cleverogre.com/plugin/ogrealert/?asset=banner-sm
Text Domain: ogrealert
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright: © 2020 CleverOgre, Inc. All rights reserved.
.-'''-.
' _ \ .---.
/ /` '. \ __.....__ | | __.....__
. | \ ' .--./) .-'' '. | | .-'' '.
| ' | '/.''\\ .-,.--. / .-''"'-. `. | | / .-''"'-. `. .-,.--. .|
\ \ / /| | | | | .-. |/ /________\ \ __ | |/ /________\ \| .-. | .' |_
`. ` ..' / \`-' / | | | || | .:--.'. | || || | | | .' |
'-...-'` /("'` | | | |\ .-------------'/ | \ | | |\ .-------------'| | | |'--. .-'
\ '---. | | '- \ '-.____...---.`" __ | | | | \ '-.____...---.| | '- | |
/'""'.\ | | `. .' .'.''| | | | `. .' | | | |
|| ||| | `''-...... -' / / | |_'---' `''-...... -' | | | '.'
\'. __// |_| \ \._,\ '/ |_| | /
`'---' `--' `" `'-'
*/
jQuery(function ($) {
$(document).on('ready', function () {
if ($.fn.datepicker) {
// Not using datepicker atm
/* $('.ogrealert-date-picker').datepicker({
dateFormat: 'yyyy-mm-dd',
}); */
} else {
console.log('OgreAlert Error: datepicker does not exist.');
}
});
});