From 076588b2c30e452fc4d43654d431cd9d9982b7a8 Mon Sep 17 00:00:00 2001 From: davegandy Date: Thu, 9 May 2013 00:04:35 -0400 Subject: [PATCH] updating contribute section --- build/_includes/contribute.html | 48 +++++++++++++++++++++------------ build/assets/js/site.js | 6 +++++ 2 files changed, 37 insertions(+), 17 deletions(-) diff --git a/build/_includes/contribute.html b/build/_includes/contribute.html index a38ff22ad..5c51777ee 100644 --- a/build/_includes/contribute.html +++ b/build/_includes/contribute.html @@ -34,32 +34,46 @@ -
- -

- Found a bug? Want to request a new icon? Want to see what's up next for the project? - Submit an issue or a - pull request on the - GitHub project. Here are a few guidelines: +

+ +

+ Found a problem with Font Awesome? Feel free to submit an issue on the GitHub project. But please keep the following in mind:

    -
  1. Be nice. No one likes a jackass.
  2. -
  3. Check to see if your issue you want to open already exists. Search is a beautiful invention.
  4. +
  5. Please be nice. Font Awesome is a happy place.
  6. +
  7. Please search to see if your icon request already exists.
  8. - If you're making a request for a new icon, it's helpful if you include the following: -
      -
    • Title your request Icon request: icon-name
    • -
    • Icon use cases. How do you want to be using it?
    • -
    • Attach an image or two that represent the idea you're going for. Remember that font icons are a single color.
    • -
    + Before opening any issue, please read the generic issue + guidelines, by Nicolas Gallagher.
  9. - If you're submitting a pull request, make it on the latest -wip branch. All pull requests against master will be - ignored. + After doing everything above, feel free to + submit an issue.
+
+ + Found a way to solve a bug in Font Awesome? Want to contribute new features? Here are a few things to remember: +
    +
  1. Please submit all pull requests against *-wip branches.
  2. +
  3. All pull requests submitted against master will be sumarily closed and this guide referenced.
  4. +
  5. + After doing everything above, feel free to + submit a pull request. +
  6. +
+
+ +
+ +

+ Want to keep up with what's planned for Font Awesome? Check out our + milestones on the GitHub project. +

+
+

diff --git a/build/assets/js/site.js b/build/assets/js/site.js index 9be7c5616..3f308947c 100644 --- a/build/assets/js/site.js +++ b/build/assets/js/site.js @@ -8,6 +8,12 @@ $(function() { $('pre').addClass('prettyprint'); window.prettyPrint && prettyPrint(); + // Disable links with href="#" inside

, so users can click on them + // to preview :active state without being scrolled up to the top of the page. + $('section a[href="#"]').click(function(e) { + e.preventDefault(); + e.stopPropagation(); + }); // // inject twitter & github counts // $.ajax({ // url: 'http://api.twitter.com/1/users/show.json',