mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
18 lines
520 B
JavaScript
18 lines
520 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 */
|
|
|
|
if ((/MSIE (\d+)/.exec(window.navigator.userAgent) && /MSIE (\d+)/.exec(window.navigator.userAgent)[1] >= 6) && (/MSIE (\d+)/.exec(window.navigator.userAgent) && /MSIE (\d+)/.exec(window.navigator.userAgent)[1] <= 8)) {
|
|
|
|
(function($) {
|
|
$(".xe").hide();
|
|
})(jQuery);;
|
|
|
|
};
|