* view: make button focusable by default * view: add MdTextButton * view: add common methods to LabelButton
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			370 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			370 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict'
 | 
						|
 | 
						|
const electron = require('electron')
 | 
						|
 | 
						|
const { LabelButton } = electron
 | 
						|
const { MdTextButton } = process.atomBinding('md_text_button')
 | 
						|
 | 
						|
Object.setPrototypeOf(MdTextButton.prototype, LabelButton.prototype)
 | 
						|
 | 
						|
MdTextButton.prototype._init = function () {
 | 
						|
  // Call parent class's _init.
 | 
						|
  LabelButton.prototype._init.call(this)
 | 
						|
}
 | 
						|
 | 
						|
module.exports = MdTextButton
 |