electron/lib/browser/api/views/label-button.js
2020-03-20 13:28:31 -07:00

15 lines
361 B
JavaScript

'use strict';
const electron = require('electron');
const { Button } = electron;
const { LabelButton } = process.electronBinding('label_button');
Object.setPrototypeOf(LabelButton.prototype, Button.prototype);
LabelButton.prototype._init = function () {
// Call parent class's _init.
Button.prototype._init.call(this);
};
module.exports = LabelButton;