Skip to content
Snippets Groups Projects
Verified Commit 2587d91c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Merge branch 'master' into 4-css-class-clashes-with-frameworks

parents 5f50d705 1e490713
No related branches found
No related tags found
1 merge request!5Resolve "CSS class clashes with frameworks"
...@@ -141,6 +141,8 @@ cython_debug/ ...@@ -141,6 +141,8 @@ cython_debug/
# Nodejs/Yarn stuff # Nodejs/Yarn stuff
node_modules/ node_modules/
example/package.json
example/yarn.lock
# IDE specific stuff # IDE specific stuff
.idea/ .idea/
......
# Default ignored files
/shelf/
/workspace.xml
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/
console.log("Input script loaded"); console.log("Input script loaded");
$(document).ready(function () { $(document).ready(function () {
let all_inputs = $(".split-input-group input"); let all_inputs = $(".input-group input");
console.log("Splitted inputs loaded.") console.log("Split inputs loaded.")
if (!window.clear_splitted_inputs) { if (!window.clear_split_inputs) {
console.log("Splitted inputs won't be cleared.") console.log("Split inputs won't be cleared.")
} else { } else {
all_inputs.each(function (count, obj) { all_inputs.each(function (count, obj) {
$(obj).val(""); $(obj).val("");
}) })
console.log("Splitted inputs have been cleared.") console.log("Split inputs have been cleared.")
} }
all_inputs.keyup(function (e) { all_inputs.keyup(function (e) {
let target = $(e.target); let target = $(e.target);
......
{
"dependencies": {
"jquery": "3.5.1"
}
}
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
jquery@3.5.1:
version "3.5.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5"
integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg==
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment