| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| <div class="maskedInputContainer"> | |
| <input type="text" class="tipo" maxlength="16" id="numero_tarjeta_debito" name="numero_tarjeta_debito" data-mask /> | |
| </div> | |
| <p class="visualizeDemo">El valor escrito es: <span id="valor"></span></p> |
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
| <div class="maskedInputContainer"> | |
| <input type="text" class="tipo" maxlength="16" id="numero_tarjeta_debito" name="numero_tarjeta_debito" data-mask /> | |
| </div> | |
| <p class="visualizeDemo">El valor escrito es: <span id="valor"></span></p> |
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
| <div class="maskedInputContainer"> | |
| <input type="text" class="tipo" maxlength="16" id="numero" name="numero" data-mask /> | |
| </div> | |
| <p class="visualizeDemo">El valor escrito es: <span id="valor"></span></p> |
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
| // @param {function} f The function to execute when DOM is ready | |
| function a(f,o,m){o=document,m='addEventListener';o[m]?o[m]('DOMContentLoaded',f):(o=window,o.attachEvent('onload',f));} |
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
| 0 |
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
| 1 |
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
| node_modules |
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
| /** | |
| * Creates a read/writable property which returns a function set for write/set (assignment) | |
| * and read/get access on a variable | |
| * | |
| * @param {Any} value initial value of the property | |
| */ | |
| function createProperty(value) { | |
| var _value = value; | |
| /** |
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
| <link rel="import" href="../polymer/polymer.html"> | |
| <!-- | |
| `polymaiap-loader` | |
| Loader for Polymaiap App. | |
| Loader CSS example taken from fareco (https://github.com/fareco/css-loader) | |
| @demo demo/index.html | |
| --> | |
| <dom-module id="polymaiap-loader"> |
OlderNewer