File: str_view.js

package info (click to toggle)
r-cran-stringr 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,032 kB
  • sloc: javascript: 11; sh: 9; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
HTMLWidgets.widget({

  name: 'str_view',

  type: 'output',

  initialize: function(el, width, height) {
  },

  renderValue: function(el, x, instance) {
    el.innerHTML = x.html;
  },

  resize: function(el, width, height, instance) {
  }

});