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 loop = (() => { | |
| const recur = (callback, count, i=0) => { | |
| if (i == count-1) return callback(i); | |
| callback(i); | |
| return recur(callback, count, i+1); | |
| }; | |
| return (callback, count) => { | |
| if (count > 0) return recur(callback, count); | |
| }; | |
| })(); |
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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <system.serviceModel> | |
| <bindings> | |
| <basicHttpBinding> | |
| <binding name="NintexWorkflowWSSoap"> | |
| <security mode="TransportCredentialOnly"> | |
| <transport clientCredentialType="Ntlm" proxyCredentialType="None" realm="" /> | |
| <message clientCredentialType="UserName" algorithmSuite="Default" /> | |
| </security> |
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
| using System; | |
| using System.CodeDom; | |
| using System.CodeDom.Compiler; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Net; | |
| using System.Reflection; | |
| using System.ServiceModel; | |
| using System.ServiceModel.Description; | |
| using System.ServiceModel.Security; |
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
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| prop1: false, | |
| hello: "Default text of comp-1", | |
| _changeHello: function() { | |
| this.set('hello', 'Text set by comp-1'); | |
| }.on("init"), | |
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
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| actions: { | |
| testAction() { | |
| Ember.Logger.info("MouseDown event has been caught!"); | |
| } | |
| } | |
| }); |