mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
14 lines
295 B
JavaScript
14 lines
295 B
JavaScript
/* Original file: tests/_data/formatter/concat.source1.js */
|
|
|
|
(function($) {
|
|
$(".foo").click(function(event) {
|
|
event.preventDefault();
|
|
$(this).attr("bar", "baz");
|
|
});
|
|
})(jQuery);;
|
|
|
|
/* Original file: tests/_data/formatter/concat.source2.js */
|
|
|
|
(function($) {
|
|
$(".xe").hide();
|
|
})(jQuery);;
|