This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Shoneys = (function(){ | |
var _this; | |
function Shoneys(){ | |
_this = this; | |
} | |
Shoneys.prototype.init = function(){ | |
return 1; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* class Location | |
* @author : Chad Steele | |
* grabs userLocation from either browser or external API Call and matches with | |
* the nearest store using a local service call. | |
* ============================================================================== */ | |
var Location = (function(){ | |
var _this; |