Updated site to scale better on small screens; Added clearfix css; Updated shadow feature to use css shadows instead of js/images.
Added code to the admin part of the site - still non-functional. Need to fix JSON streaming over HTTP such that native types (boolean, Date, int) are preserved for the DB; Need to finish the restore functionality & the hide/show of the edit, delete, and restore buttons on each editor page.
This commit is contained in:
@@ -185,7 +185,12 @@ function LayoutManager(view) {
|
||||
if(oldUrlObjectFadeOuts) fadeManager.fadeOut(oldUrlObjectFadeOuts);
|
||||
|
||||
//If the element being shown is set to load upon showing, do the load of the contents now.//
|
||||
brainstormFramework.load(container[0], viewMetadata.url);
|
||||
//brainstormFramework.load(container[0], viewMetadata.url);
|
||||
$.ajax({url: viewMetadata.url, dataType: 'html', async: false}).done(function(data) {
|
||||
container.html(data);
|
||||
}).fail(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
|
||||
//Some presets via the element's class, to fade things in and out based on the element's style.//
|
||||
for(var index = 0; index < _this.pageClassFades.length; index++) {
|
||||
|
||||
Reference in New Issue
Block a user