Merge branch 'next-minor' into develop
This commit is contained in:
commit
0aefc76aaa
2 changed files with 1 additions and 5 deletions
|
|
@ -17,6 +17,7 @@
|
|||
# 0.6.5.0
|
||||
|
||||
## Refactor
|
||||
* Remove unused setPreload function [#7354](https://github.com/diaspora/diaspora/pull/7354)
|
||||
|
||||
## Bug fixes
|
||||
|
||||
|
|
|
|||
|
|
@ -60,11 +60,6 @@ var app = {
|
|||
return !!(window.gon.preloads && window.gon.preloads[prop]); //returning boolean variable so that parsePreloads, which cleans up properly is used instead
|
||||
},
|
||||
|
||||
setPreload : function(prop, val) {
|
||||
window.gon.preloads = window.gon.preloads || {};
|
||||
window.gon.preloads[prop] = val;
|
||||
},
|
||||
|
||||
parsePreload : function(prop) {
|
||||
if(!app.hasPreload(prop)) { return; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue