media tag experiments

This commit is contained in:
ansuz
2017-02-24 12:08:16 +01:00
parent f168433db0
commit ba3e24b595
2 changed files with 31 additions and 0 deletions

9
www/assert/media/main.js Normal file
View File

@@ -0,0 +1,9 @@
define([
'/bower_components/jquery/dist/jquery.min.js',
], function () {
var $ = window.jQuery;
$('media').each(function () {
window.alert("media tag selection works!");
});
});