Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarkov authored Sep 4, 2019
1 parent 511550c commit 9626604
Show file tree
Hide file tree
Showing 2 changed files with 10,955 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/smart.bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Smart HTML Elements v4.3.0 (2019-Aug)
/* Smart HTML Elements v4.4.0 (2019-Sep)
Copyright (c) 2011-2019 jQWidgets.
License: https://htmlelements.com/license/ */

Expand Down Expand Up @@ -258,6 +258,13 @@ Smart('bootstrap-toggle-button', class BootstrapToggleButton extends Smart.Boots
};
}

template() {
return `<div><div id="button" class="btn">
<input class="hide" indeterminate=[[indeterminate]] checked=[[checked]] id="input" type="checkbox" name=\'[[name]]\' autocomplete="off"/>
<label id="label"><content></content></label>
</div></div>`;
}

toggle(event) {
const that = this;

Expand Down Expand Up @@ -1967,6 +1974,17 @@ Smart('bootstrap-progress', class BootstrapProgress extends Smart.ContentElement
}
});

Smart('bootstrap-circular', class BootstrapCircular extends Smart.Bootstrap.Progress {
static get properties() {
return {
'type': {
value: 'circular',
type: 'string'
}
}
}
});

Smart('bootstrap-input', class BootstrapTextBox extends Smart.ContentElement {
static get properties() {
return {
Expand Down
Loading

0 comments on commit 9626604

Please sign in to comment.