This commit is contained in:
Jordan Bates 2013-05-01 18:23:06 -07:00
parent f2eff01c83
commit 758bb20499
6 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,6 @@
seaweedchan
- Fix boards with previously deleted archives not switching to new archives
### 1.1.8 - 2013-05-01 ### 1.1.8 - 2013-05-01
seaweedchan: seaweedchan:
- Fix QR not clearing on submit with Posting Success Notifications disabled - Fix QR not clearing on submit with Posting Success Notifications disabled

View File

@ -7542,7 +7542,7 @@
Redirect = { Redirect = {
init: function() { init: function() {
return $.sync('archs', this.updateArchives); return $.sync('archivers', this.updateArchives);
}, },
updateArchives: function() { updateArchives: function() {
return $.get('archivers', {}, function(_arg) { return $.get('archivers', {}, function(_arg) {
@ -9791,7 +9791,7 @@
}; };
init({ init({
'Polyfill': Polyfill, 'Polyfill': Polyfill,
'Redirection': Redirect, 'Redirect': Redirect,
'Header': Header, 'Header': Header,
'Catalog Links': CatalogLinks, 'Catalog Links': CatalogLinks,
'Settings': Settings, 'Settings': Settings,

View File

@ -7563,7 +7563,7 @@
Redirect = { Redirect = {
init: function() { init: function() {
return $.sync('archs', this.updateArchives); return $.sync('archivers', this.updateArchives);
}, },
updateArchives: function() { updateArchives: function() {
return $.get('archivers', {}, function(_arg) { return $.get('archivers', {}, function(_arg) {
@ -9814,7 +9814,7 @@
}; };
init({ init({
'Polyfill': Polyfill, 'Polyfill': Polyfill,
'Redirection': Redirect, 'Redirect': Redirect,
'Header': Header, 'Header': Header,
'Catalog Links': CatalogLinks, 'Catalog Links': CatalogLinks,
'Settings': Settings, 'Settings': Settings,

View File

@ -7546,7 +7546,7 @@
Redirect = { Redirect = {
init: function() { init: function() {
return $.sync('archs', this.updateArchives); return $.sync('archivers', this.updateArchives);
}, },
updateArchives: function() { updateArchives: function() {
return $.get('archivers', {}, function(_arg) { return $.get('archivers', {}, function(_arg) {
@ -9795,7 +9795,7 @@
}; };
init({ init({
'Polyfill': Polyfill, 'Polyfill': Polyfill,
'Redirection': Redirect, 'Redirect': Redirect,
'Header': Header, 'Header': Header,
'Catalog Links': CatalogLinks, 'Catalog Links': CatalogLinks,
'Settings': Settings, 'Settings': Settings,

View File

@ -1,6 +1,6 @@
Redirect = Redirect =
init: -> init: ->
$.sync 'archs', @updateArchives $.sync 'archivers', @updateArchives
updateArchives: -> updateArchives: ->
$.get 'archivers', {}, ({archivers}) -> $.get 'archivers', {}, ({archivers}) ->

View File

@ -65,7 +65,7 @@ Main =
init init
'Polyfill': Polyfill 'Polyfill': Polyfill
'Redirection': Redirect 'Redirect': Redirect
'Header': Header 'Header': Header
'Catalog Links': CatalogLinks 'Catalog Links': CatalogLinks
'Settings': Settings 'Settings': Settings