Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrboomer committed Mar 9, 2016
2 parents 8eca9e5 + 6d64c9c commit f83b557
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ YASB is a Google Chrome Extension that automatically add shoes on a page to the
</ul>

--------------------------------------------------------------------
This is the source code distribution of YASB. A compiled 'ready to use' version (.CRX) can be found here:
This is the source code distribution of YASB. A compiled 'ready to use' version can be found on the Chrome Web Store:

https://github.com/mrboomer/yasb/releases/download/v0.4.0/yasb.crx.zip
https://chrome.google.com/webstore/detail/yet-another-shoe-bot/fblacoodeipcdfnahcnakjiphkpfcmfg

If you are a developer and want to contribute to YASB, check out the repository at GitHub:

Expand Down
2 changes: 1 addition & 1 deletion js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
*/

/*global chrome */
/* global chrome */

// Initialialize Variables, Badge Name and Color
chrome.storage.local.set({'yasbActive': true, 'sizeSelected': false});
Expand Down
2 changes: 1 addition & 1 deletion js/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
*/

/*globals $, chrome, window, setInterval, footlocker */
/* globals $, chrome, window, document, setInterval, clearInterval */

function loadSettings(callback) {
chrome.storage.local.get(['yasbActive', 'sizeSelected', 'shoeSize', 'cart', 'checkout'], function(response) {
Expand Down
2 changes: 1 addition & 1 deletion js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
*/

/*global $, chrome, Materialize */
/* global $, chrome, Materialize */

var $shoeSizeInput = $('#shoe-size'),
$cartInput = $('#to-cart'),
Expand Down
2 changes: 1 addition & 1 deletion js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
*/

/*global $, chrome*/
/* global $, chrome*/

var $yasbButton = $('.yasb-toggle'),
$settingsButton = $('.settings');
Expand Down

0 comments on commit f83b557

Please sign in to comment.