- Check the decisions folder for a document for this feature
- no decision document found
- Check out other API teams codebase and see if the feature has been implemented
- Feature is implemented
- Yes
- Does this implementation work for the new feature requirement?
- Yes
- Yes
- no decision document found
- Write up a decision document to describe the implementation and submit with the details including linking to the design document.
I hereby claim:
- I am robbiethegeek on github.
- I am robbiethegeek (https://keybase.io/robbiethegeek) on keybase.
- I have a public key whose fingerprint is F5C0 9DE3 AF44 83CF 56D4 0CE9 3B81 1B8F 5C99 ED5A
To claim this, I am signing this object:
At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.
This file contains 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 name = 'Robert Holmes' | |
var message = 'Woohoo, not on the waitlist'; | |
$('#rsvp-list-waitlist li').each(function(index){ | |
if ($('.member-name', this).text(),indexOf(name) !== 1){ | |
message = "Hi there "+ name + " you are number: " + index +"on the waiting list"; | |
}); | |
alert(message); |