Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/tau_1.0' into HEAD
Browse files Browse the repository at this point in the history
Signed-off-by: Lukasz Slachciak <l.slachciak@samsung.com>
  • Loading branch information
lmslachciak committed Apr 22, 2020
2 parents 2372122 + 0516f71 commit 02cc20a
Show file tree
Hide file tree
Showing 10 changed files with 1,748 additions and 555 deletions.
3 changes: 3 additions & 0 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"checkboxes",
"flipster"
],
"ignorePaths" : [
"**/jquery.js"
],
"ignoreWords": [
//common words and short forms
"tizen",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
previous = previous.previousElementSibling;
}
if (previous.classList.contains("ui-group-index")) {
// store group index chekcbox to variable
// store group index checkbox to variable
groupIndexCheckbox = previous.querySelector("input[type=checkbox]");
}
// now check elements below selected checkbox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
spin = tau.widget.Spin(spinElement);

if (spin) {
// Disable spin on click on selected item
// disable spin on click on selected item
if (!spin.option("enabled")) {
spin.option("enabled", true);
} else if (target.classList.contains("ui-spin-item-selected")) {
spin.option("enabled", false);
}

// disble previous enbled spin
// disable previously enabled spin
spins.forEach(function (toDisable) {
if (toDisable !== spin) {
toDisable.option("enabled", false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<div class="ui-page" id="page-text-input">
<div class="ui-content text-input-content">
<input id="name" name="name" placeholder="Name" type="text" />
<input id="phonenumber" name="phonenumber" placeholder="Phone number" type="text" />
<input id="phonenumber2" name="phonenumber2" placeholder="Phone number" type="text" />
<input id="phonenumber" name="phonenumber" placeholder="Phone number" type="number" />
<input id="phonenumber2" name="phonenumber2" placeholder="Phone number" type="number" />
</div>
<footer class="ui-footer ui-bottom-button">
<button class="ui-btn">
Expand Down
Loading

0 comments on commit 02cc20a

Please sign in to comment.