mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2025-04-19 05:35:36 +03:00
* Moving the boilerplate to its own directory
* Adding an improved README * Removing unused features of the boilerplate * Officially tagging as 1.0
This commit is contained in:
parent
47edae47e6
commit
e4bbd52ae0
10 changed files with 75 additions and 22 deletions
6
plugin-boilerplate/js/admin.js
Normal file
6
plugin-boilerplate/js/admin.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
(function ($) {
|
||||
"use strict";
|
||||
$(function () {
|
||||
// Place your administration-specific JavaScript here
|
||||
});
|
||||
}(jQuery));
|
6
plugin-boilerplate/js/display.js
Normal file
6
plugin-boilerplate/js/display.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
(function ($) {
|
||||
"use strict";
|
||||
$(function () {
|
||||
// Place your public-facing JavaScript here
|
||||
});
|
||||
}(jQuery));
|
Loading…
Add table
Add a link
Reference in a new issue