1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-11-23 01:32:18 -05:00
kaiwa/clientapp/helpers/embedIt.js

15 lines
301 B
JavaScript
Raw Normal View History

2014-01-01 19:24:11 -05:00
/*global $, app*/
module.exports = function ($html, cb) {
cb = cb || function () {};
$($html).find("a.source").oembed(null, {
fallback : true,
includeHandle: false,
maxWidth: 490,
afterEmbed: function() {
$($html).find(".embeds").show();
}
2014-01-01 19:24:11 -05:00
});
};