Skip to content

Commit d6df3ec

Browse files
author
Gianluca Carnielli
committed
1. Edited project name
2. jsbutton --> html button 3. Updated Example live script
1 parent 6e60a77 commit d6df3ec

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Example.mlx

-6.11 KB
Binary file not shown.
File renamed without changes.

code/jsbutton.m renamed to code/htmlbutton.m

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
classdef jsbutton < matlab.ui.componentcontainer.ComponentContainer
2-
%JSBUTTON Customizable javascript button.
1+
classdef htmlbutton < matlab.ui.componentcontainer.ComponentContainer
2+
%HTMLBUTTON Customizable HTML button.
33
%
44
% Copyright 2023 The MathWorks, Inc.
55

@@ -69,17 +69,17 @@
6969
end % properties (Access = private)
7070

7171
methods
72-
function obj = jsbutton(Parent, opts)
73-
%JSBUTTON Class constructor
72+
function obj = htmlbutton(Parent, opts)
73+
%HTMLBUTTON Class constructor
7474
%
75-
% jsbutton(Parent, opts) creates a customizable button.
75+
% htmlbutton(Parent, opts) creates a customizable button.
7676
% Specify Parent as a container object such as uifigure,
7777
% uipanel or uigridlayout, and opts as Name=Value arguments
7878
% including public properties of jsbutton.
7979

8080
arguments
8181
Parent = []
82-
opts.?jsbutton
82+
opts.?htmlbutton
8383
end
8484

8585
% Call superconstructor to assign parent

0 commit comments

Comments
 (0)