Add experimental machine learning

This commit is contained in:
Machine Learning
2021-06-18 12:27:29 +07:00
committed by Javi Martín
parent c8d8fae98d
commit 4d27bbebad
84 changed files with 2845 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
(function() {
"use strict";
App.AdminMachineLearningScripts = {
initialize: function() {
$(".admin .machine-learning-scripts select").on({
change: function() {
var element = document.getElementById($(this).val());
$("#script_descriptions > *").not(element).addClass("hide");
$(element).removeClass("hide");
}
}).trigger("change");
}
};
}).call(this);