Ticket #1964: 1964.patch
File 1964.patch, 1.3 KB (added by , 6 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/js/forums.js
1 ( function( $ ) { 2 3 $( '#new-post' ).submit(function() { 4 $( '[type="submit"]', $(this) ).prop( 'disabled', 'disabled' ); 5 }); 6 7 } )( window.jQuery ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
24 24 wp_style_add_data( 'forum-wp4-style', 'rtl', 'replace' ); 25 25 26 26 wp_enqueue_script( 'wporg-support-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151217', true ); 27 wp_enqueue_script( 'wporg-support-forums', get_template_directory_uri() . '/js/forums.js', array( 'jquery' ), 20180719, true ); 27 28 } 28 29 add_action( 'wp_enqueue_scripts', 'wporg_support_scripts' ); 29 30