Track scripts.js
davvalent

davvalent commited on 2023-08-01 06:48:42
Showing 2 changed files, with 9 additions and 0 deletions.

... ...
@@ -16,3 +16,4 @@
16 16
 !wp-content/plugins/sportspress/templates/event-fixtures-results.php
17 17
 !wp-content/plugins/sportspress/templates/player-list.php
18 18
 !wp-content/plugins/sportspress/includes/api/class-sp-rest-api.php
19
+!wp-content/themes/rookie/js/scripts.js
19 20
\ No newline at end of file
... ...
@@ -0,0 +1,8 @@
1
+/**
2
+ * scripts.js
3
+ *
4
+ * Custom scripts for the Rookie theme.
5
+ */
6
+( function( $ ) {
7
+	$('.comment-metadata time').timeago();
8
+} )( jQuery );
0 9