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.
12345678910111213 |
- $(document).ready(function() {
- $("[data-fill-from]").each(function () {
- var $this = $(this);
-
- var codeContainer = $this.data("fill-from");
- var $container = $(codeContainer);
-
- var code = $.trim($container.html());
-
- $this.text(code);
- $this.addClass("prettyprint");
- });
- });
|