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
| var rmBtns = document.querySelectorAll('[aria-label="Remove"]') | |
| rmBtns.forEach(function(el) { | |
| el.click(); | |
| }); |
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
| build_settings: | |
| verbose: false | |
| prefer_symlink: false | |
| setup: | |
| composer: | |
| action: "install" | |
| prefer_dist: false | |
| test: |
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
| ... | |
| <tr> | |
| <td bgcolor="#E9E9E9" class="emailcolsplit"> | |
| <table border="0" width="100%" cellpadding="0" cellspacing="0"> | |
| <tr> | |
| <td style="padding-left:20px; padding-bottom:20px;"> | |
| <h2>He revels in disorganization.</h2> | |
| <p>But you don’t have time for confusion. The IBM Journey Designer can help you refine the buyer journey across channels to create exceptional customer experiences.</p> | |
| <img src="images/learn_01.jpg" width="115" height="34" alt=""/> | |
| </td> |
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
| <?php | |
| /** | |
| * | |
| * @param $password A user defined password | |
| * @return string | |
| * | |
| */ | |
| public function encryptPasswordToRsaBase64(string $password): string | |
| { | |
| $publicKey = fopen('/path/to/public/key.pem', 'r'); |
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
| window.axios = require('../../../node_modules/axios/dist/axios'); | |
| Vue.prototype.$http = axios; | |
| axios.interceptors.request.use(function(config){ | |
| config.headers['X-CSRF-TOKEN'] = Laravel.csrfToken | |
| return config; | |
| }) |
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
| var o1 = o1 || {}; | |
| o1.panel0 = document.getElementsByClassName('sd-component-imagetextbanner-singtel')[0], | |
| o1.panel1 = document.getElementsByClassName('sd-component-imagetextbanner-singtel')[1], | |
| o1.panel2 = document.getElementsByClassName('sd-component-imagetextbanner-singtel')[2], | |
| o1.panel3 = document.getElementsByClassName('sd-component-imagetextbanner-singtel')[3], | |
| o1.panel4 = document.getElementsByClassName('sd-component-imagetextbanner-singtel')[4] | |
| o1.panel5 = document.getElementsByClassName('sd-component-pagesection-singtel')[0], | |
| o1.panel6 = document.getElementsByClassName('sd-component-pagesection-singtel')[1], | |
| o1.panel0Trigger = false, | |
| o1.panel1Trigger = false, |
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> | |
| <head> | |
| <title>Test</title> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <div class="row"> | |
| <input type="text" name="" v-model="keyword"> |
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
| self.on('*.submitOnepass', function () { | |
| var countryCode = (self.get('displayCountryCode')) ? self.get('selectedCountryCode') + '-' : ''; | |
| this.set('ssoLoginUserid', countryCode + self.get('loginid')); | |
| this.set('countryCode', countryCode); | |
| this.set('username', countryCode + self.get('loginid')); | |
| this.set('tempCcode', ((self.get('displayCountryCode')) ? '+' : '') + countryCode); | |
| this.set('loginUserid', self.get('loginid')); | |
| this.set('loading', true); |
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"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Count Down</title> | |
| </head> | |
| <body> | |
| <h1 id="countDownContainer"></h1> |
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"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <input type="text" v-model="item.value"> | |
| <button type="button" @click="addItem" :disabled="!item.value">Add</button> |