Here you can find the source of capitalize()
// This is a manifest file that'll be compiled into application.js, which will include all the files // listed below./*from www . ja va 2 s. c om*/ // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. // // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // compiled file. // // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details // about supported directives. // //= require jquery //= require jquery_ujs //= require turbolinks //= require_tree . //= require ace/ace //= require semantic-ui String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }
String.prototype.capitalize = function () { if (this.valueOf()) { var novoTexto = "", palavra, palavras = this.valueOf().split(" "); for (var i = 0; i < palavras.length; i++) { palavra = palavras[i]; novoTexto += palavra.substr(0, 1).toUpperCase() + palavra.substr(1) + " "; return novoTexto.trim(); return "";
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); function mapRange(value, low1, high1, low2, high2){ return low2 + (high2 - low2) * ((value - low1) / (high1 - low1)); function getAssocSize(array){ var size = 0, key; for (key in array) { ...
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substr(1); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }; String.prototype.doubleQuote = function() { return '"' + this + '"'; };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); String.prototype.titleize = function() { var string_array = this.split(' '); string_array = string_array.map(function(str) { return str.capitalize(); }); return string_array.join(' '); ...
String.prototype.capitalize = function(){ var val = this; return val[0].toUpperCase() + val.substring(1);
String.prototype.capitalize = function(){ return this.replace(/\w+/g, function(a){ return a.charAt(0).toUpperCase() + a.substr(1).toLowerCase(); }); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }; $.fn.ensureVisible = function () { $(this).each(function () { $(this)[0].scrollIntoView(); }); };