Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
#117 - adiciona arquivos de release para teste da home com Bulma
Browse files Browse the repository at this point in the history
  • Loading branch information
Jota Teles committed Jan 11, 2017
1 parent 008c754 commit aa706ed
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
48 changes: 24 additions & 24 deletions release/frontpress.js
Original file line number Diff line number Diff line change
Expand Up @@ -5731,6 +5731,30 @@ TrustAsHtml.$inject = ["$sce"];

"use strict";

function ApiManager(ApiManagerMap){
var service = {
getPath: getPath
};

return service;

function getPath(object, pathName){
var result = object;
var path = ApiManagerMap[pathName];

for(var i=0; i < path.length; i++){
result = result[path[i]];
}

return result;
}
}

angular.module("frontpress.components.api-manager").service("ApiManager", ApiManager);
ApiManager.$inject = ["ApiManagerMap"];

"use strict";

function AjaxModel($http) {
function request(url, params, method) {
params = params || {};
Expand Down Expand Up @@ -5768,30 +5792,6 @@ angular.module("frontpress.components.ajax").factory("AjaxModel", AjaxModel);
AjaxModel.$inject = ["$http"];


"use strict";

function ApiManager(ApiManagerMap){
var service = {
getPath: getPath
};

return service;

function getPath(object, pathName){
var result = object;
var path = ApiManagerMap[pathName];

for(var i=0; i < path.length; i++){
result = result[path[i]];
}

return result;
}
}

angular.module("frontpress.components.api-manager").service("ApiManager", ApiManager);
ApiManager.$inject = ["ApiManagerMap"];

"use strict";

function BlogModel(BlogApi, $q, ApiManager, $FrontPress){
Expand Down
4 changes: 2 additions & 2 deletions release/frontpress.min.js

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions release/frontpress.v1.js
Original file line number Diff line number Diff line change
Expand Up @@ -5731,6 +5731,30 @@ TrustAsHtml.$inject = ["$sce"];

"use strict";

function ApiManager(ApiManagerMap){
var service = {
getPath: getPath
};

return service;

function getPath(object, pathName){
var result = object;
var path = ApiManagerMap[pathName];

for(var i=0; i < path.length; i++){
result = result[path[i]];
}

return result;
}
}

angular.module("frontpress.components.api-manager").service("ApiManager", ApiManager);
ApiManager.$inject = ["ApiManagerMap"];

"use strict";

function AjaxModel($http) {
function request(url, params, method) {
params = params || {};
Expand Down Expand Up @@ -5768,30 +5792,6 @@ angular.module("frontpress.components.ajax").factory("AjaxModel", AjaxModel);
AjaxModel.$inject = ["$http"];


"use strict";

function ApiManager(ApiManagerMap){
var service = {
getPath: getPath
};

return service;

function getPath(object, pathName){
var result = object;
var path = ApiManagerMap[pathName];

for(var i=0; i < path.length; i++){
result = result[path[i]];
}

return result;
}
}

angular.module("frontpress.components.api-manager").service("ApiManager", ApiManager);
ApiManager.$inject = ["ApiManagerMap"];

"use strict";

function BlogModel(BlogApi, $q, ApiManager, $FrontPress){
Expand Down
4 changes: 2 additions & 2 deletions release/frontpress.v1.min.js

Large diffs are not rendered by default.

0 comments on commit aa706ed

Please sign in to comment.