mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-16 05:49:16 +02:00
fixed iframe & spinner asset path.
This commit is contained in:
+1
-1
@@ -79,7 +79,7 @@ iD.OAuth = function() {
|
||||
modal
|
||||
.select('.content')
|
||||
.append('iframe')
|
||||
.attr({ width: 640, height: 550, frameborder: 'no' })
|
||||
.attr({ width: "100%", height: 550, frameborder: 'no' })
|
||||
.attr('src', baseurl + '/oauth/authorize?' + ohauth.qsString({
|
||||
oauth_token: resp.oauth_token,
|
||||
oauth_callback: location.href.replace('index.html', '')
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ iD.loading = function(message) {
|
||||
var loadertext = modal.select('.content')
|
||||
.classed('loading-modal', true)
|
||||
.append('div').classed('modal-section',true);
|
||||
loadertext.append('img').attr('class','loader').attr('src', '../img/loader.gif');
|
||||
loadertext.append('img').attr('class','loader').attr('src', '/img/loader.gif');
|
||||
loadertext.append('h3').text(message || '');
|
||||
|
||||
return modal;
|
||||
|
||||
Reference in New Issue
Block a user