This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cryptpad/www/assert/media/main.js
T

10 lines
203 B
JavaScript
Raw Normal View History

2017-02-24 12:08:16 +01:00
define([
'/bower_components/jquery/dist/jquery.min.js',
], function () {
var $ = window.jQuery;
$('media').each(function () {
window.alert("media tag selection works!");
});
});