Spell checking, a-c.

This commit is contained in:
Mike Castle 2013-11-22 20:14:23 -08:00
parent 336c52b830
commit c31fa3d46d
11 changed files with 12 additions and 12 deletions

View File

@ -58,7 +58,7 @@ Every browser has a console built in that allows for easy debugging.
- **Firefox:** hit `CTRL+SHIFT+K` or if you have Firebug installed `F12` - **Firefox:** hit `CTRL+SHIFT+K` or if you have Firebug installed `F12`
- **Opera:** hit `CTRL+SHIFT+I` - **Opera:** hit `CTRL+SHIFT+I`
The consoles basically work the same. You can run commands in the console window that execute in the pages context. All browsers also allow you to inspect the HTML code that currently makes the page. Its usually available in a different tab and called “document” or “elements” (expection for Firefox: hit `CTRL+SHIFT+I`). The consoles basically work the same. You can run commands in the console window that execute in the pages context. All browsers also allow you to inspect the HTML code that currently makes the page. Its usually available in a different tab and called “document” or “elements” (except for Firefox: hit `CTRL+SHIFT+I`).
How do I report bugs? How do I report bugs?

View File

@ -160,7 +160,7 @@ CHANGES IN 0.5 / 0.51
Ingress Ingress
- Feature: You are now alerted if some of the resources fail to load - Feature: You are now alerted if some of the resources fail to load
- Change: portal level should now stand out better against more - Change: portal level should now stand out better against more
backgrouds (by jonatkins) backgrounds (by jonatkins)
- Change: increased hack range from 35m to 40m - Change: increased hack range from 35m to 40m
- Change: Sidebar now semi-transparent, just like chat (by cmrn) - Change: Sidebar now semi-transparent, just like chat (by cmrn)
- Change: portals are now sized according to their level (by OshiHidra) - Change: portals are now sized according to their level (by OshiHidra)

View File

@ -289,7 +289,7 @@ window.Render.prototype.createPortalEntity = function(ent) {
//(as it's called from elsewhere - e.g. selecting/deselecting portals) //(as it's called from elsewhere - e.g. selecting/deselecting portals)
//ALSO: change API for highlighters - make them return the updated style rather than directly calling setStyle on the portal marker //ALSO: change API for highlighters - make them return the updated style rather than directly calling setStyle on the portal marker
//(can this be done in a backwardly-compatable way??) //(can this be done in a backwardly-compatible way??)
var dataOptions = { var dataOptions = {
level: portalLevel, level: portalLevel,
@ -543,7 +543,7 @@ window.Render.prototype.resetPortalClusters = function() {
this.portalClusters[cid].push(p.options.guid); this.portalClusters[cid].push(p.options.guid);
} }
// now, for each cluster, sort by some arbitary data (the guid will do), and display the first CLUSTER_PORTAL_LIMIT // now, for each cluster, sort by some arbitrary data (the guid will do), and display the first CLUSTER_PORTAL_LIMIT
for (var cid in this.portalClusters) { for (var cid in this.portalClusters) {
var c = this.portalClusters[cid]; var c = this.portalClusters[cid];

2
external/KML.js vendored
View File

@ -275,7 +275,7 @@ L.Util.extend(L.KML, {
var el = xml.getElementsByTagName('coordinates'); var el = xml.getElementsByTagName('coordinates');
var coords = []; var coords = [];
for (var j = 0; j < el.length; j++) { for (var j = 0; j < el.length; j++) {
// text might span many childnodes // text might span many childNodes
coords = coords.concat(this._read_coords(el[j])); coords = coords.concat(this._read_coords(el[j]));
} }
return coords; return coords;

View File

@ -6,7 +6,7 @@
// 1. Go to the www.cloudmade.com website and register an account // 1. Go to the www.cloudmade.com website and register an account
// 2. Get an API Key // 2. Get an API Key
// 3. Edit the clode below, replace YOUR_API_KEY with the API key from CloudMade.com // 3. Edit the code below, replace YOUR_API_KEY with the API key from CloudMade.com
// 4. Reload the page // 4. Reload the page
// optional: browse their map styles, add/modify any you like to the cmStyles list // optional: browse their map styles, add/modify any you like to the cmStyles list

View File

@ -17,7 +17,7 @@
//NOTE: plugin authors - due to the unique requirements of this plugin, it doesn't use the standard IITC //NOTE: plugin authors - due to the unique requirements of this plugin, it doesn't use the standard IITC
//plugin architechure. do NOT use it as a template for other plugins //plugin architecture. do NOT use it as a template for other plugins
if(window.location.protocol !== 'https:') { if(window.location.protocol !== 'https:') {

View File

@ -42,7 +42,7 @@ window.plugin.showMorePortals.setup = function() {
} }
// and, the same scale for L2+ and L3+ portals. again, forcing the level down isn't unfriendly to the servers // and, the same scale for L2+ and L3+ portals. again, forcing the level down isn't unfriendly to the servers
// (ditto on the cacheing) // (ditto on the caching)
if (mapZoom >= 12) { if (mapZoom >= 12) {
return 13; return 13;
} }

View File

@ -30,7 +30,7 @@ window.plugin.updateCheck.getUrl = function(callback) {
var url = 'http://iitc.jonatkins.com/versioncheck.php' var url = 'http://iitc.jonatkins.com/versioncheck.php'
+ '?build=@@BUILDNAME@@' + '?build=@@BUILDNAME@@'
+ '&mobile='+((typeof android !== 'undefined' && android)?'1':'0') + '&mobile='+((typeof android !== 'undefined' && android)?'1':'0')
+ '&ts='+Date.now(); // append timestamp - ensures no cacheing of old data, even on mobile with the aggressive cache code + '&ts='+Date.now(); // append timestamp - ensures no caching of old data, even on mobile with the aggressive cache code
if (callback) { if (callback) {
url = url + '&callback='+callback url = url + '&callback='+callback

View File

@ -126,7 +126,7 @@
} }
/** /**
* Basicly string casting method. * Basically string casting method.
*/ */
public function __toString() public function __toString()
{ {

View File

@ -54,7 +54,7 @@ standard intel site. Changes include
</ul> </ul>
</p> </p>
<p> <p>
<b>3RD PARTY PLUGIN AUTHORS</b>: The plugin wrapper code has been modified to pass through the additioal version <b>3RD PARTY PLUGIN AUTHORS</b>: The plugin wrapper code has been modified to pass through the additional version
information. While existing plugins should continue to work, I highly recommend updating the wrapper code in your information. While existing plugins should continue to work, I highly recommend updating the wrapper code in your
scripts to match. scripts to match.
</p> </p>

View File

@ -41,7 +41,7 @@ standard intel site. Changes include
</ul> </ul>
</p> </p>
<p> <p>
<b>3RD PARTY PLUGIN AUTHORS</b>: The plugin wrapper code has been modified to pass through the additioal version <b>3RD PARTY PLUGIN AUTHORS</b>: The plugin wrapper code has been modified to pass through the additional version
information. While existing plugins should continue to work, I highly recommend updating the wrapper code in your information. While existing plugins should continue to work, I highly recommend updating the wrapper code in your
scripts to match. scripts to match.
</p> </p>