Skip to content

Commit 56d7c5a

Browse files
author
LAPTOP-48KIJ867\Langri
committed
no message
1 parent 0cd5dbd commit 56d7c5a

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

public/css/bootstrap-4.3.1.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/bootstrap-4.3.1.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/minitool_fillfield.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// quick filling fields; example at URL `zdarzenia/dodaj`
2+
jQuery(document).ready(function($){
3+
$('body').on('click', '[data-fillfield]', function() {
4+
var qffcontent = $(this).attr("data-fillfield");
5+
var qfftarget = $(this).attr("data-filltarget");
6+
$(qfftarget).text(qffcontent);
7+
// console.log('qff ok!' + qffcontent + ' --> '+ qfftarget);
8+
9+
});
10+
});

public/js/uikit-icons.min.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)