consul/consul

View on GitHub
app/assets/javascripts/embed_video.js

Summary

Maintainability
A
0 mins
Test Coverage
(function() {
  "use strict";
  App.EmbedVideo = {
    initialize: function() {
      $("#js-embedded-video").each(function() {
        var code;
        code = $(this).data("video-code");
        $("#js-embedded-video").html(code);
      });
    }
  };
}).call(this);