-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e77691
commit df748c2
Showing
28 changed files
with
212 additions
and
195 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import Yapıştır from "../paste.svg"; | ||
import Css from "./birim.css"; | ||
import dom from "/lib/util/dom"; | ||
|
||
/** @const {!HTMLInputElement} */ | ||
export const EşikGirdisi = dom.input("imt"); | ||
/** @const {!HTMLAnchorElement} */ | ||
export const GösterDüğmesi = dom.a("imbe"); | ||
/** @const {!HTMLAnchorElement} */ | ||
export const İptalDüğmesi = dom.a("imbh"); | ||
/** @const {!HTMLDivElement} */ | ||
export const İptalciler = dom.div("imf"); | ||
/** @const {!HTMLDivElement} */ | ||
export const Kök = dom.div("im"); | ||
/** @const {!HTMLDivElement} */ | ||
export const Kutu = dom.div("imc"); | ||
/** @const {!HTMLInputElement} */ | ||
export const ToplamAğırlık = dom.input("ims"); | ||
|
||
const İptalci = () => | ||
<div class="imcont"> | ||
<input class="imai" type="text" spellcheck="false" /> | ||
<a href="javascript:" class="imbtn paste" en:title="Paste" title="Yapıştır"><Yapıştır inline /></a> | ||
<a href="javascript:" class="imbtn minus">-</a> | ||
<input class="imwi" type="number" value="1" /> | ||
<a href="javascript:" class="imbtn plus">+</a> | ||
<a href="javascript:" class="imdel" en:title="Delete address" title="Adresi sil"></a> | ||
</div>; | ||
|
||
export default () => | ||
<Kök class="step disabled"> | ||
<Css /> | ||
<b data-en="4. Social revoke addresses.">4. İmece iptal adresleri.</b> | ||
{{ | ||
tr: <> | ||
Fiyatı <span id="imft">$1,5’dan</span> <span id="imfs">$1’a</span> düşürmek için | ||
(%<span id="imfu">33</span> indirim) imece iptal adresleri eklemek istiyor musunuz?</>, | ||
en: <> | ||
Would you like to set up social revoke addresses to reduce the price | ||
from <span id="imft">$1.5</span> to <span id="imfs">$1</span> | ||
(a discount of <span id="imfu">33</span>%)?</> | ||
}} | ||
<br /> | ||
<br /> | ||
<GösterDüğmesi href="javascript:" id="imbe" class="act btn lft" data-en="Yes">Evet</GösterDüğmesi> | ||
<İptalDüğmesi href="javascript:" id="imbh" class="btn" data-en="No">Hayır</İptalDüğmesi> | ||
<Kutu style="display:none"> | ||
<div id="imlbl"> | ||
<b data-en="Address">Adres</b> | ||
<b data-en="Weight">Ağırlık</b> | ||
</div> | ||
<İptalciler> | ||
<İptalci /> | ||
<İptalci /> | ||
<İptalci /> | ||
</İptalciler> | ||
<br /> | ||
<a href="javascript:" id="imba" class="btn" en:title="Add address" title="Adres ekle">+</a> | ||
<div class="imdc"> | ||
<div class="imtc imcont"> | ||
<b class="imb" data-en="Threshold ">Eşik </b> | ||
<a href="javascript:" id="imtm" class="imbtn minus">-</a> | ||
<EşikGirdisi type="number" class="imwi" value="2" /> | ||
<a href="javascript:" id="imtp" class="imbtn plus">+</a> | ||
</div> | ||
<div> | ||
<b class="imb" data-en="Total weight">Toplam Ağırlık</b> | ||
<ToplamAğırlık type="number" readonly value="3" /> | ||
</div> | ||
</div> | ||
<a href="javascript:" id="imbt" class="act btn lft" data-en="OK">Tamam</a> | ||
<a href="javascript:" id="imbi" class="btn" data-en="Cancel">İptal</a> | ||
</Kutu> | ||
</Kök> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.