Skip to content

Commit

Permalink
move assets to template && add scroll for global headers block
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherry-Pie committed Aug 19, 2017
1 parent 2073f4e commit 2647d5e
Show file tree
Hide file tree
Showing 14 changed files with 45 additions and 28 deletions.
Binary file removed public/images/logo.png
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<style>
/*
* easy-autocomplete
* jQuery plugin for autocompletion
Expand Down Expand Up @@ -27,3 +28,4 @@
margin-bottom: 0;
color: #555;
}
</style>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<style>
/* Syntax highlighting for JSON objects */
ul.json-dict, ol.json-array {
list-style-type: none;
Expand Down Expand Up @@ -51,3 +52,4 @@
#apidocs-api a.json-string {
color: #ace46b;
}
</style>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<style>
@media only screen and (min-width: 320px) and (max-width: 479px) {
.mm-toggle-wrap {
display:inline-block;
Expand Down Expand Up @@ -450,3 +451,4 @@
margin-left: 47%;
}
}
</style>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<style media="all">
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -2135,4 +2136,6 @@
box-shadow: 0 0 10px rgba(0,0,0,0.5);
width: 630px;
background: #ffffff;
overflow-y: overlay;
}
</style>
4 changes: 2 additions & 2 deletions public/js/app.js → resources/views/assets/js/app.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

<script>
$(window).on('resize', function() {
$('.global-headers-section').width($('.method-copy').width() - 30);
});
Expand Down Expand Up @@ -284,4 +284,4 @@ function showGlobalHeaders(ctx)
$('.global-headers-section').slideDown();
}
}

</script>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions resources/views/assets/js/jquery-2-2-4.blade.php

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<script>
/**
* jQuery json-viewer
* @author: Alexandre Bodelot <alexandre.bodelot@gmail.com>
Expand Down Expand Up @@ -146,3 +147,4 @@ function json2html(json, options) {
});
};
})(jQuery);
</script>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<script>
/*!
Waypoints - 4.0.1
Copyright © 2011-2016 Caleb Troughton
Expand Down Expand Up @@ -755,4 +756,5 @@ function merge(target, obj) {
})
Waypoint.Adapter = NoFrameworkAdapter
}())
;
;
</script>
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<sctipt>
/*!
Tendina jQuery plugin v0.11.1
Copyright (c) 2015 Ivan Prignano
Released under the MIT License
*/(function(){var a=function(a,b){return function(){return a.apply(b,arguments)}},b=[].slice;!function(c){var d;return d=function(){function b(b,d){this._eventHandler=a(this._eventHandler,this),this.options=c.extend({},this.defaults,d),this.$el=c(b),this.elSelector=this._getSelector(this.$el),this.$el.addClass("tendina"),this.linkSelector=""+this.elSelector+" a",this.$listElements=c(this.linkSelector).parent("li"),this._hideSubmenus(),this.mouseEvent=this.options.onHover===!0?"mouseenter.tendina":"click.tendina",this._bindEvents(),null!==this.options.activeMenu&&this._openActiveMenu(this.options.activeMenu)}return b.prototype.defaults={animate:!0,speed:500,onHover:!1,hoverDelay:200,activeMenu:null},b.prototype._bindEvents=function(){return c(document).on(this.mouseEvent,this.linkSelector,this._eventHandler)},b.prototype._unbindEvents=function(){return c(document).off(this.mouseEvent)},b.prototype._getSelector=function(a){var b,d,e;return d=null!=(e=c(a).attr("class"))?e.split(" ")[0]:void 0,b=c(a).attr("id"),void 0!==b?"#"+b:"."+d},b.prototype._isFirstLevel=function(a){return c(a).parent().parent().hasClass("tendina")?!0:void 0},b.prototype._eventHandler=function(a){var b;return b=a.currentTarget,this._hasChildren(b)&&this._IsChildrenHidden(b)?(a.preventDefault(),this.options.onHover?setTimeout(function(a){return function(){return c(b).is(":hover")?a._openSubmenu(b):void 0}}(this),this.options.hoverDelay):this._openSubmenu(b)):this._isCurrentlyOpen(b)&&this._hasChildren(b)&&(a.preventDefault(),!this.options.onHover)?this._closeSubmenu(b):void 0},b.prototype._openSubmenu=function(a){var b,d;return d=c(a).next("ul"),b=this.$el.find("> .selected ul").not(d).not(d.parents("ul")),c(a).parent("li").addClass("selected"),this._close(b),this.$el.find(".selected").not(d.parents("li")).removeClass("selected"),this._open(d),this.options.openCallback?this.options.openCallback(c(a).parent()):void 0},b.prototype._closeSubmenu=function(a){var b,d;return d=c(a).next("ul"),b=d.find("li.selected"),c(a).parent().removeClass("selected"),this._close(d),b.removeClass("selected"),this._close(b.find("ul")),this.options.closeCallback?this.options.closeCallback(c(a).parent()):void 0},b.prototype._open=function(a){return this.options.animate?a.stop(!0,!0).slideDown(this.options.speed):a.show()},b.prototype._close=function(a){return this.options.animate?a.stop(!0,!0).slideUp(this.options.speed):a.hide()},b.prototype._hasChildren=function(a){return c(a).next("ul").length>0},b.prototype._IsChildrenHidden=function(a){return c(a).next("ul").is(":hidden")},b.prototype._isCurrentlyOpen=function(a){return c(a).parent().hasClass("selected")},b.prototype._hideSubmenus=function(){return this.$el.find("ul").hide()},b.prototype._showSubmenus=function(){return this.$el.find("ul").show(),this.$el.find("li").addClass("selected")},b.prototype._openActiveMenu=function(a){var b,c;return b=a instanceof jQuery?a:this.$el.find(a),c=b.closest("ul").parents("li").find("> a"),this._hasChildren(c)&&this._IsChildrenHidden(c)?c.next("ul").show():b.next("ul").show(),b.parent().addClass("selected"),c.parent().addClass("selected")},b.prototype.destroy=function(){return this.$el.removeData("tendina"),this._unbindEvents(),this._showSubmenus(),this.$el.removeClass("tendina"),this.$el.find(".selected").removeClass("selected")},b.prototype.hideAll=function(){return this._hideSubmenus()},b.prototype.showAll=function(){return this._showSubmenus()},b}(),c.fn.extend({tendina:function(){var a,e;return e=arguments[0],a=2<=arguments.length?b.call(arguments,1):[],this.each(function(){var b,f;return b=c(this),f=b.data("tendina"),f||b.data("tendina",f=new d(this,e)),"string"==typeof e?f[e].apply(f,a):void 0})}})}(window.jQuery,window)}).call(this);
*/(function(){var a=function(a,b){return function(){return a.apply(b,arguments)}},b=[].slice;!function(c){var d;return d=function(){function b(b,d){this._eventHandler=a(this._eventHandler,this),this.options=c.extend({},this.defaults,d),this.$el=c(b),this.elSelector=this._getSelector(this.$el),this.$el.addClass("tendina"),this.linkSelector=""+this.elSelector+" a",this.$listElements=c(this.linkSelector).parent("li"),this._hideSubmenus(),this.mouseEvent=this.options.onHover===!0?"mouseenter.tendina":"click.tendina",this._bindEvents(),null!==this.options.activeMenu&&this._openActiveMenu(this.options.activeMenu)}return b.prototype.defaults={animate:!0,speed:500,onHover:!1,hoverDelay:200,activeMenu:null},b.prototype._bindEvents=function(){return c(document).on(this.mouseEvent,this.linkSelector,this._eventHandler)},b.prototype._unbindEvents=function(){return c(document).off(this.mouseEvent)},b.prototype._getSelector=function(a){var b,d,e;return d=null!=(e=c(a).attr("class"))?e.split(" ")[0]:void 0,b=c(a).attr("id"),void 0!==b?"#"+b:"."+d},b.prototype._isFirstLevel=function(a){return c(a).parent().parent().hasClass("tendina")?!0:void 0},b.prototype._eventHandler=function(a){var b;return b=a.currentTarget,this._hasChildren(b)&&this._IsChildrenHidden(b)?(a.preventDefault(),this.options.onHover?setTimeout(function(a){return function(){return c(b).is(":hover")?a._openSubmenu(b):void 0}}(this),this.options.hoverDelay):this._openSubmenu(b)):this._isCurrentlyOpen(b)&&this._hasChildren(b)&&(a.preventDefault(),!this.options.onHover)?this._closeSubmenu(b):void 0},b.prototype._openSubmenu=function(a){var b,d;return d=c(a).next("ul"),b=this.$el.find("> .selected ul").not(d).not(d.parents("ul")),c(a).parent("li").addClass("selected"),this._close(b),this.$el.find(".selected").not(d.parents("li")).removeClass("selected"),this._open(d),this.options.openCallback?this.options.openCallback(c(a).parent()):void 0},b.prototype._closeSubmenu=function(a){var b,d;return d=c(a).next("ul"),b=d.find("li.selected"),c(a).parent().removeClass("selected"),this._close(d),b.removeClass("selected"),this._close(b.find("ul")),this.options.closeCallback?this.options.closeCallback(c(a).parent()):void 0},b.prototype._open=function(a){return this.options.animate?a.stop(!0,!0).slideDown(this.options.speed):a.show()},b.prototype._close=function(a){return this.options.animate?a.stop(!0,!0).slideUp(this.options.speed):a.hide()},b.prototype._hasChildren=function(a){return c(a).next("ul").length>0},b.prototype._IsChildrenHidden=function(a){return c(a).next("ul").is(":hidden")},b.prototype._isCurrentlyOpen=function(a){return c(a).parent().hasClass("selected")},b.prototype._hideSubmenus=function(){return this.$el.find("ul").hide()},b.prototype._showSubmenus=function(){return this.$el.find("ul").show(),this.$el.find("li").addClass("selected")},b.prototype._openActiveMenu=function(a){var b,c;return b=a instanceof jQuery?a:this.$el.find(a),c=b.closest("ul").parents("li").find("> a"),this._hasChildren(c)&&this._IsChildrenHidden(c)?c.next("ul").show():b.next("ul").show(),b.parent().addClass("selected"),c.parent().addClass("selected")},b.prototype.destroy=function(){return this.$el.removeData("tendina"),this._unbindEvents(),this._showSubmenus(),this.$el.removeClass("tendina"),this.$el.find(".selected").removeClass("selected")},b.prototype.hideAll=function(){return this._hideSubmenus()},b.prototype.showAll=function(){return this._showSubmenus()},b}(),c.fn.extend({tendina:function(){var a,e;return e=arguments[0],a=2<=arguments.length?b.call(arguments,1):[],this.each(function(){var b,f;return b=c(this),f=b.data("tendina"),f||b.data("tendina",f=new d(this,e)),"string"==typeof e?f[e].apply(f,a):void 0})}})}(window.jQuery,window)}).call(this);
</sctipt>
32 changes: 14 additions & 18 deletions resources/views/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ApiDocs</title>

<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="/vendor/yaro/apidocs/css/style.css" media="all">
<link rel="stylesheet" type="text/css" href="/vendor/yaro/apidocs/css/responsive.css">
<link rel="stylesheet" type="text/css" href="/vendor/yaro/apidocs/css/jquery.json-viewer.css">
<link rel="stylesheet" type="text/css" href="/vendor/yaro/apidocs/css/easyautocomplete.css">

@include('apidocs::assets.css.style')
@include('apidocs::assets.css.responsive')
@include('apidocs::assets.css.jquery-json-viewer')
@include('apidocs::assets.css.easyautocomplete')
</head>
<body id="apidocs-api">
<div id="page">
<header class="header" id="header">
<div class="container-fluid">
<div class="row">
<div class="col-lg-2 col-sm-2 logo-main">
<a class="header__block header__brand" href="javascript:void(0);"> <h1><img src="{{ config('yaro.apidocs.logo') }}"></h1> </a>
<a class="header__block header__brand" href="javascript:void(0);"> <h1><img src="{{ config('yaro.apidocs.logo') ?: 'data:image/png;base64,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' }}"></h1> </a>
</div>
<div class="col-lg-10 col-sm-10 hidden-xs">
@include('apidocs::partials.menu_top')
Expand Down Expand Up @@ -93,17 +93,13 @@
</div>
</script>

<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>

<script type="text/javascript" src="/vendor/yaro/apidocs/js/tendina.min.js"></script>
<script type="text/javascript" src="/vendor/yaro/apidocs/js/jquery.waypoints.min.js"></script>

<script type="text/javascript" src="/vendor/yaro/apidocs/js/jquery.json-viewer.js"></script>
<script type="text/javascript" src="/vendor/yaro/apidocs/js/bootstrap-notify.min.js"></script>

<script type="text/javascript" src="/vendor/yaro/apidocs/js/easyautocomplete.min.js"></script>

<script type="text/javascript" src="/vendor/yaro/apidocs/js/app.js"></script>
@include('apidocs::assets.js.jquery-2-2-4')
@include('apidocs::assets.js.tendina')
@include('apidocs::assets.js.jquery-waypoints')
@include('apidocs::assets.js.jquery-json-viewer')
@include('apidocs::assets.js.bootstrap-notify')
@include('apidocs::assets.js.easyautocomplete')
@include('apidocs::assets.js.app')

</body>
</html>
</html>
4 changes: 0 additions & 4 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ public function boot()
__DIR__ . '/../config/apidocs.php' => config_path('yaro.apidocs.php'),
], 'config');

$this->publishes([
__DIR__ . '/../public' => public_path('vendor/yaro/apidocs'),
], 'public');

$this->app['view']->addNamespace('apidocs', __DIR__ . '/../resources/views');
} // end boot

Expand Down

0 comments on commit 2647d5e

Please sign in to comment.