Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2015-03-20 17:35:49 +01:00
commit dc5be9aef5
2 changed files with 2 additions and 2 deletions

View File

@ -3790,7 +3790,7 @@ AJAX.registerOnload('functions.js', function () {
cache: false,
type: 'POST',
data: {
favorite_tables: (isStorageSupported('localStorage'))
favorite_tables: (isStorageSupported('localStorage') && typeof window.localStorage['favorite_tables'] != 'undefined')
? window.localStorage['favorite_tables']
: ''
},

View File

@ -487,7 +487,7 @@ $(function () {
cache: false,
type: 'POST',
data: {
favorite_tables: (isStorageSupported('localStorage'))
favorite_tables: (isStorageSupported('localStorage') && typeof window.localStorage.favorite_tables != 'undefined')
? window.localStorage.favorite_tables
: ''
},