2018-10-23 14:57:13 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const electron = require('electron')
|
|
|
|
|
|
|
|
const { LabelButton } = electron
|
2019-03-18 19:37:06 +00:00
|
|
|
const { MdTextButton } = process.electronBinding('md_text_button')
|
2018-10-23 14:57:13 +00:00
|
|
|
|
|
|
|
Object.setPrototypeOf(MdTextButton.prototype, LabelButton.prototype)
|
|
|
|
|
|
|
|
MdTextButton.prototype._init = function () {
|
|
|
|
// Call parent class's _init.
|
|
|
|
LabelButton.prototype._init.call(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = MdTextButton
|