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> | |
| <meta charset="utf-8"> | |
| <title>Dumber Gist</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> | |
| <base href="/"> | |
| </head> | |
| <!-- | |
| Dumber gist uses dumber bundler, the default bundle file |
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> | |
| <meta charset="utf-8"> | |
| <title>Dumber Gist</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> | |
| <base href="/"> | |
| </head> | |
| <!-- | |
| Dumber gist uses dumber bundler, the default bundle file |
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> | |
| <meta charset="utf-8"> | |
| <title>Dumber Gist</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> | |
| <base href="/"> | |
| </head> | |
| <!-- | |
| Dumber gist uses dumber bundler, the default bundle file |
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
| <template> | |
| <require from="style.css"></require> | |
| <require from="custom-row.html"></require> | |
| <table> | |
| <tr as-element="custom-row"></tr> | |
| </table> | |
| </template> |
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
| <template> | |
| <require from="./parent-element"></require> | |
| <h1>${message}</h1> | |
| <parent-element /> | |
| </template> |
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
| <template> | |
| <h1>Hello, ${fname}!</h1> | |
| <hr> | |
| <h4>You will notice that when changing checkboxes, they reflect their value properly, but when changing radio buttons, they keep their value when they have been selected once.</h4> | |
| <div repeat.for="param of params"> | |
| <div if.bind="param.isCollection"> | |
| <div repeat.for="option of param.options"> | |
| <label mousedown.delegate="doClick(param.options, option)"> | |
| <input type="radio" checked.bind='option.selected' checked.one-way='option.selected & attr' name="opta"> |
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
| <template> | |
| <router-view></router-view> | |
| </template> |
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
| <template> | |
| <h1>${message}</h1> | |
| <div class="form-group"> | |
| <label>input 1</label> | |
| <input type="text" value.bind="input1"> | |
| </div> | |
| <div class="form-group"> | |
| <label>input 2</label> | |
| <input type="text" value.bind="myobject.input2 | checkUndefined"> |
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
| <template> | |
| <require from="./sub-widget"></require> | |
| <div repeat.for="log of logs"> | |
| <div>${log}</div> | |
| </div> | |
| <sub-widget></sub-widget> | |
| </template> |
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 emptyMetadata=Object.freeze({}),metadataContainerKey=Symbol("meta");function AggregateError(t,e,i){if(e){if(e.innerError&&i)return e;const s="\n------------------------------------------------\n";t+=`${s}Inner Error:\n`,"string"==typeof e?t+=`Message: ${e}`:(e.message?t+=`Message: ${e.message}`:t+=`Unknown Inner Error Type. Displaying Inner Error as JSON:\n ${JSON.stringify(e,null," ")}`,e.stack&&(t+=`\nInner Error Stack:\n${e.stack}`,t+="\nEnd Inner Error Stack")),t+=s}let s=new Error(t);return e&&(s.innerError=e),s}"function"!=typeof Reflect.getOwnMetadata&&(Reflect.getOwnMetadata=function(t,e,i){if(e.hasOwnProperty(metadataContainerKey))return(e[metadataContainerKey][i]||emptyMetadata)[t]}),"function"!=typeof Reflect.defineMetadata&&(Reflect.defineMetadata=function(t,e,i,s){let r;i.hasOwnProperty(metadataContainerKey)?r=i[metadataContainerKey]:Reflect.defineProperty(i,metadataContainerKey,{configurable:!0,value:r={}}),(r[s]||(r[s]={}))[t]=e}),"function"!=typeof Reflect.metadata&&(Reflect.metadata=fu |