Skip to content

Commit

Permalink
typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgeoa committed Oct 12, 2020
1 parent ed3727b commit 72674cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions solid-ide-solidHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ self.log = function(msg){console.log(msg) }
this.isSolsideHome = function(url){
if( url==="https://solside.solidcommunity.net/public/index.html"
|| url==="https://solside.solidcommunity.net/public/"
|| url==="https://solside.soliidcommunity.net/public"
|| url==="https://solside.solidcommunity.net/public"
){ return true }
}
this.cp = async function(from, to, mode, aclMode, agentMode, mergeMode, type){
Expand Down Expand Up @@ -291,7 +291,7 @@ this.urlFromQueryString = function(){
}
else {
thing = {
url : sol.homeUrl ? sol.homeUrl : "https://solside.soliidcommunity.net/public/samples/",
url : sol.homeUrl ? sol.homeUrl : "https://solside.solidcommunity.net/public/samples/",
type : "folder"
}
}
Expand Down
2 changes: 1 addition & 1 deletion solid-ide-solidSession.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* START OF SESSION FUNCTIONS */
const defaultPopupUri = 'https://inrupt.net/common/popup.html' //'https://solid.community/common/popup.html'
const defaultPopupUri = 'https://solidcommunity.net/common/popup.html' //'https://solid.community/common/popup.html'

var SolidSession = function(auth) {

Expand Down
6 changes: 3 additions & 3 deletions solid-ide.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ var app = new Vue({
storePrefs : function(){
localStorage.setItem("solState", JSON.stringify({
home : this.homeUrl,
idp : sol.idp, // TBD why always https://soliidcommunity.net
idp : sol.idp, // TBD why always https://solidcommunity.net
keys : this.editKeys,
theme : this.editTheme,
links : this.displayLinks,
Expand All @@ -539,8 +539,8 @@ var app = new Vue({
var state = localStorage.getItem("solState");
if(!state) {
sol.homeUrl = this.homeUrl =
"https://solside.soliidcommunity.net/public/samples/"
sol.idp = this.idp = "https://soliidcommunity.net"
"https://solside.solidcommunity.net/public/samples/"
sol.idp = this.idp = "https://solidcommunity.net"
this.storePrefs()
return;
}
Expand Down

0 comments on commit 72674cf

Please sign in to comment.