a524c5ec12
* chore: move the view APIs to their own directory * move view api cpp files
15 lines
349 B
JavaScript
15 lines
349 B
JavaScript
'use strict'
|
|
|
|
const electron = require('electron')
|
|
|
|
const { Button } = electron
|
|
const { LabelButton } = process.atomBinding('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
|