Created
August 18, 2011 14:18
-
-
Save meirish/1154145 to your computer and use it in GitHub Desktop.
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 self = this, | |
baseUrl = '/myGCS/sw/tracker/gtuSettings/', | |
idString = '?unitId='+this.model.id, | |
noCacheString = '&a='+(+new Date), | |
urls = { | |
'settings': [baseUrl, idString, 'deviceSettings', noCacheString].join(''), | |
'battery': [baseUrl, idString, 'batteryUsage', noCacheString].join(''), | |
'notifications': [baseUrl, idString, 'deviceNotifications', noCacheString].join(''), | |
'continuous-tracking': [baseUrl, idString, 'batteryUsage', noCacheString].join(''), | |
'check-ins': [baseUrl, idString, 'batteryUsage', noCacheString].join(''), | |
}, | |
urlToLoad = loadAfter || 'settings'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment