7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
|
/*global $, dotclear */
|
||
|
'use strict';
|
||
|
|
||
|
$(function () {
|
||
|
$('#improve_menu input[type=submit]').hide();
|
||
|
$('#improve_menu #type').on('change', function () {this.form.submit();});
|
||
|
});
|