No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

data-fill-from.js 299B

12345678910111213
  1. $(document).ready(function() {
  2. $("[data-fill-from]").each(function () {
  3. var $this = $(this);
  4. var codeContainer = $this.data("fill-from");
  5. var $container = $(codeContainer);
  6. var code = $.trim($container.html());
  7. $this.text(code);
  8. $this.addClass("prettyprint");
  9. });
  10. });