Skip to content

Commit

Permalink
Revert "add htmlTag and htmlClass properties"
Browse files Browse the repository at this point in the history
This reverts commit 43bcccf.
  • Loading branch information
comrat committed Jan 24, 2024
1 parent 48c15ab commit 39a28c7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions core/Item.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ Object {
property lazy anchors: Anchors { }
property lazy effects: Effects { }
property lazy transform: Transform { }

property string htmlTag: "div";
property string htmlClass;
property bool cssTranslatePositioning;
property bool cssNullTranslate3D;
property bool cssDelegateAlwaysVisibleOnAcceleratedSurfaces: true;
Expand Down Expand Up @@ -70,10 +67,10 @@ Object {
}

/// returns tag for corresponding element
function getTag() { return this.htmlTag }
function getTag() { return 'div' }

/// returns tag for corresponding element
function getClass() { return this.htmlClass }
function getClass() { return '' }

///@private
function registerStyle(style, tag) {
Expand Down

0 comments on commit 39a28c7

Please sign in to comment.