electron/lib/browser/api/views/image-view.js

14 lines
330 B
JavaScript
Raw Normal View History

2020-03-22 10:11:43 +00:00
const electron = require('electron');
const { View } = electron;
const { ImageView } = process.electronBinding('image_view');
Object.setPrototypeOf(ImageView.prototype, View.prototype);
ImageView.prototype._init = function () {
// Call parent class's _init.
View.prototype._init.call(this);
};
module.exports = ImageView;