* Create a new Renderer instance. * @param {object} [loader] - Optional loader instance for * image and href URL sanitization. If not specified, a * standard loader instance will be generated. * @constructor
(loader)
| 123411 | * standard loader instance will be generated. |
| 123412 | * @constructor |
| 123413 | */ function Renderer(loader) { |
| 123414 | this._el = null; |
| 123415 | this._bgcolor = null; |
| 123416 | this._loader = new ResourceLoader(loader); |
| 123417 | } |
| 123418 | Renderer.prototype = { |
| 123419 | /** |
| 123420 | * Initialize a new Renderer instance. |
nothing calls this directly
no outgoing calls
no test coverage detected