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
| function compare3x3(data) { | |
| "use strict"; | |
| var chunkLength = data.length / 3, | |
| iter = 1, | |
| objarr = { | |
| "array1": [], | |
| "array2": [], | |
| "array3": [], |
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 template = document.createElement('template') | |
| template.innerHTML = ` | |
| <style> | |
| * { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| -ms-box-sizing: border-box; | |
| box-sizing: border-box; |
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
| <html> | |
| <head> | |
| <style media="screen"> | |
| nav p { | |
| background-color: #c1c1c1; | |
| cursor: pointer; | |
| } | |
| .output { | |
| display: none; | |
| } |
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
| function superb(a, b) { | |
| this.a = a | |
| this.b = b | |
| } | |
| superb.prototype.math = function() { | |
| return this.a + this.b | |
| } | |
| function duper(c, d) { |
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
| let initMessageAids = (divOutput) => { | |
| let style = ` | |
| <style> | |
| input::-webkit-outer-spin-button, | |
| input::-webkit-inner-spin-button { | |
| -webkit-appearance: none; | |
| margin: 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
| class DetailedDropDownStyles { | |
| constructor() { | |
| this.themeRed = '#ef4545'; | |
| this.themeRedBorder = '#c13636'; | |
| } | |
| setStyles() { | |
| this.searchBar.style.cssText = ` | |
| padding: 10px; | |
| font-size: 20px; |
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
| class AdvancedSearchModalStyles { | |
| constructor() { | |
| this.themeLightGreen = '#4ff7a8'; | |
| this.themeGreen = '#42ce8d'; | |
| this.themeDarkGreen = '#309b69'; | |
| this.modalItemStyles = { | |
| input: modalContent => | |
| (modalContent.style.cssText = this.inputComponentStyle`border: 1px solid ${ | |
| this.themeDarkGreen | |
| }; cursor: pointer; display: inline;`), |
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
| const backgroundGradient = (() => { | |
| let grad = document.querySelector('body'), | |
| degree = 0, | |
| red = 200, | |
| green = 0, | |
| blue = 100, | |
| redup = true, | |
| greenup = false, | |
| blueup = 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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| <style> | |
| :root { | |
| --smile-stroke-width: 8px; |
OlderNewer