mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-13 01:37:10 +02:00
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
(function(){
|
|
"use strict";
|
|
|
|
$(function(){
|
|
var $select = $('#setting-format select');
|
|
if($select.length === 0) return;
|
|
|
|
var $options = $('#setting-format-options');
|
|
console.log($options);
|
|
debugger;
|
|
$select.on("change", function(ev){
|
|
});
|
|
});
|
|
})();
|
|
|