- Detailed Cheatsheet: http://danielkummer.github.io/git-flow-cheatsheet/
- Command-line Arguments Reference: https://github.com/nvie/gitflow/wiki/Command-Line-Arguments
- git-flow Home: https://github.com/nvie/gitflow
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Github Search User Semantic UI</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" integrity="sha256-9mbkOfVho3ZPXfM7W8sV2SndrGDuh7wuyLjtsWeTI1Q=" crossorigin="anonymous" /> | |
| </head> | |
| <body> | |
| <div class="ui main container"> |
I hereby claim:
- I am sandip124 on github.
- I am sandip124 (https://keybase.io/sandip124) on keybase.
- I have a public key ASAtdWCdC4EftayuhEayYyok7LZ465Iq15O9zoyLR5eI6go
To claim this, I am signing this object:
This file contains hidden or 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
| // example tailwind.config.js | |
| // ... | |
| // theme: { | |
| // readableText: { | |
| // level: 'AAA', | |
| // size: 'small' | |
| // }, | |
| // } | |
| // ... | |
| // |
This file contains hidden or 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
| /** | |
| * Checks if changes are made to a form | |
| * credits to Craig Buckler "http://www.sitepoint.com/javascript-form-change-checker/" | |
| * @param {type} form | |
| * @returns {Array|formChanges.changed} | |
| */ | |
| function IsFormChanged(form) { | |
| if (typeof(form) === "string"){ | |
| form = document.getElementById(form); |
This file contains hidden or 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
| <svg viewBox="0 0 16 16" fill="none" style="box-sizing: content-box; color: var(--color-icon-primary);" class="octospinner mx-auto" width="64" height="64"> | |
| <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke"></circle> | |
| <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"> | |
| <animateTransform attributeName="transform" type="rotate" from="0 8 8" to="360 8 8" dur="1s" repeatCount="indefinite"></animateTransform> | |
| </path> | |
| </svg> |
Binding data to textbox or any input so that the data is updated.
$("#ProductId").data("kendoNumericTextBox").value(@Model.ProductId);