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
| ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app /Applications/iPhone\ Simulator.app |
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
| { | |
| "predef": [ | |
| "dojo", | |
| // jquery | |
| "$", | |
| // Leaflet | |
| "L", | |
| // AMD |
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
| { | |
| "displayFieldName": "", | |
| "geometryType": "esriGeometryPoint", | |
| "spatialReference": { | |
| "wkid": 26912, | |
| "latestWkid": 26912 | |
| }, | |
| "fields": [{ | |
| "name": "OBJECTID", | |
| "type": "esriFieldTypeOID", |
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
| define([ | |
| 'dojo/_base/declare', | |
| 'dojo/_base/Deferred', | |
| 'cem/Helpers', | |
| 'dojo/cookie', | |
| 'dojo/json' | |
| ], | |
| function (declare, Deferred, helpers, cookie, json) { | |
| return declare('cem.Authentication', null, { |
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
| { | |
| "products": [ | |
| { | |
| "name": "Michigan", | |
| "packages": [ | |
| { | |
| "name": "Lake Michigan", | |
| "packageId": 123 | |
| }, | |
| { |
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
| { | |
| "packages": [ | |
| { | |
| "name": "Lake Michigan", | |
| "packageId": 123, | |
| "product": "Michigan" | |
| }, | |
| { | |
| "name": "Lake Michigan", | |
| "packageId": 123, |
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 dojoConfig = { | |
| has: {'dojo-undef-api': true} | |
| }; | |
| function stubModule(modulePath, stubs, forcedRefreshModules) { | |
| // inspired by: http://stackoverflow.com/questions/11439540/how-can-i-mock-dependencies-for-unit-testing-in-requirejs | |
| // and https://github.com/mattfysh/testr.js | |
| var aliases = [], | |
| key, | |
| stubname, | |
| returnModule, |
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
| // dojoScript is dojo/io/script (dojo 1.7) | |
| var params = { | |
| url: "//mapserv.utah.gov/wsut/Geocode.svc/hello/street(" + this.milepostTxt.value + | |
| ")zone(" + this.routeTxt.value + ")", | |
| handleAs: 'json', | |
| timeout: this.timeout, | |
| preventCache: true, | |
| callbackParamName: 'callback' | |
| }; | |
| var that = this; |
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
| /* iPhone (3.5") portrait */ | |
| @media only screen and (device-height: 480px) and (orientation: portrait) { | |
| } | |
| /* iPhone (3.5") landscape */ | |
| @media only screen and (device-height: 480px) and (orientation: landscape) { | |
| } | |
| /* iPhone retina (3.5") portrait */ | |
| @media only screen and (device-height: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) { |
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
| // old service | |
| { | |
| "SolarValues": { | |
| "directDur": [116, 133, 194, 232, 281, 274, 278, 252, 198, 168, 118, 89], | |
| "directRad": [47362, 55685, 85571, 111281, 134067, 118954, 110845, 93663, 59411, 41572, 34990, 34176], | |
| "durArea": 2765, | |
| "time": "18.0028616" | |
| } | |
| } |