This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(css,js,json,scss): apply prettier auto formatting
- Loading branch information
1 parent
4ce9c30
commit 0042254
Showing
12 changed files
with
309 additions
and
271 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* eslint-disable no-unused-vars */ | ||
var config = { | ||
'gaID': '', | ||
gaID: '', | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
define(['angular'], function(angular) { | ||
// see https://uw-madison-doit.github.io/uw-frame/configuration.html for howto | ||
return angular.module('override', []) | ||
.constant('OVERRIDE', { | ||
'APP_FLAGS': { | ||
'defaultTheme': 'uwMadison', | ||
'showSearch': false, | ||
'isWeb': false, | ||
'loginOnLoad': false, | ||
return angular.module('override', []).constant('OVERRIDE', { | ||
APP_FLAGS: { | ||
defaultTheme: 'uwMadison', | ||
showSearch: false, | ||
isWeb: false, | ||
loginOnLoad: false, | ||
}, | ||
NAMES: { | ||
title: 'Widget Creator', | ||
fname: 'widget-creator', | ||
}, | ||
SERVICE_LOC: { | ||
kvURL: null, | ||
groupURL: 'staticFeeds/groups.json', | ||
sessionInfo: 'staticFeeds/guest-session.json', | ||
shibbolethSessionURL: 'staticFeeds/Shibboleth.sso/Session.json', | ||
templates: 'json/starter-templates', | ||
widgetApi: { | ||
// For local testing, change to 'staticFeeds/' | ||
entry: 'data:application/json;base64,', | ||
entrySuffix: '', | ||
entries: null, | ||
}, | ||
'NAMES': { | ||
'title': 'Widget Creator', | ||
'fname': 'widget-creator', | ||
}, | ||
'SERVICE_LOC': { | ||
'kvURL': null, | ||
'groupURL': 'staticFeeds/groups.json', | ||
'sessionInfo': 'staticFeeds/guest-session.json', | ||
'shibbolethSessionURL': 'staticFeeds/Shibboleth.sso/Session.json', | ||
'templates': 'json/starter-templates', | ||
'widgetApi': { | ||
// For local testing, change to 'staticFeeds/' | ||
'entry': 'data:application/json;base64,', | ||
'entrySuffix': '', | ||
'entries': null, | ||
}, | ||
}, | ||
'MISC_URLS': { | ||
'rootURL': 'https://my.wisc.edu', | ||
}, | ||
}); | ||
}, | ||
MISC_URLS: { | ||
rootURL: 'https://my.wisc.edu', | ||
}, | ||
}); | ||
}); |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.