SoftwareSpot
SoftwareSpot
Is this being maintained any more? If not I will gladly take over the project or at best become a contributor to the project.Just check out the projects I contributed...
This is bad practice to include another user's library for the purposes of demonstration. The best approach would be to link to a Bootsrap CDN. I have removed in my...
``` js function valueToUpper(strings, ...values) { // Set the values i.e. first and last name to upper-case values[0] = values[0].toUpperCase(); values[1] = values[1].toUpperCase(); // Re-create the template return `${strings[0]}${values[0]}${strings[1]}${values[1]}${strings[2]}`; }...
I was recently persuaded to move from grunt to gulp and was wondering is this library tied to grunt? I could easily port over to gulp if you feel it's...
It's best to do something like this when creating a new HTML element... ``` js // Close button var $button = $('') .attr('type', 'button') .addClass('close') .attr('data-dismiss', 'alert') .attr('aria-label', 'Close'), //...
You can see from [here](https://github.com/softwarespot/bootstrap-growl) how it could be done. I will keep the fork active, but am going to be maintaining my own version called bootstrapPurr >> https://github.com/softwarespot/jquery-bootstrap-purr
Bootstrap is not really synonymous with Twitter anymore, well at least not the name.
Kind of a serious issue, as it states `Did you mean to return a conditional instead of an assignment?`. I have fixed in my custom [fork](https://github.com/softwarespot/bootstrap-growl) for now.