2017-07-06 12:42:49 +00:00
|
|
|
/*
|
|
|
|
|
2017-07-06 18:02:30 +00:00
|
|
|
Copyright 2017 Aggelos Sarris and contributors
|
2017-07-06 12:42:49 +00:00
|
|
|
|
2017-07-06 18:02:30 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2017-07-06 12:42:49 +00:00
|
|
|
|
2017-07-06 18:02:30 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2019-01-08 15:04:27 +00:00
|
|
|
|
2017-07-06 12:42:49 +00:00
|
|
|
*/
|
|
|
|
|
2016-08-29 20:24:26 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
$(".button-collapse").sideNav();
|
2019-01-08 15:04:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
});
|
2020-07-31 20:11:13 +00:00
|
|
|
|
|
|
|
$(function(){
|
2020-07-31 20:26:36 +00:00
|
|
|
$(".build").slice(0, 6).show();
|
|
|
|
$("#load").click(function(e){
|
2020-07-31 20:11:13 +00:00
|
|
|
e.preventDefault();
|
2020-07-31 20:26:36 +00:00
|
|
|
$("div:hidden").slice(0, 6).show();
|
|
|
|
if($("div:hidden").length == 0){
|
2020-07-31 20:11:13 +00:00
|
|
|
$("#load").hide();
|
|
|
|
}
|
|
|
|
});
|
2020-07-31 20:26:36 +00:00
|
|
|
});
|