Update v1.0.6.10

This commit is contained in:
sujitprasad
2016-04-01 10:51:32 +05:30
parent b3b9467b1a
commit ba8ccf7646
5 changed files with 32 additions and 16 deletions

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>laravel</name>
</data>
<spellchecker-wordlist xmlns="http://www.netbeans.org/ns/spellchecker-wordlist/1">
<word>endif</word>
</spellchecker-wordlist>
</configuration>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

View File

@@ -220,14 +220,28 @@ div.DTFC_RightFootWrapper table,
div.DTFC_LeftFootWrapper table {
border-top: none;
}
div.dataTables_wrapper div.dataTables_processing{
position:absolute;top:50%;
left:15%;width:90%;
margin-left:-100px;
margin-top:-26px;
text-align:center;
padding:1em 0;
z-index: 9999;
}
.backgroundfadein{
body{
opacity: 0.1;
}
}
/* .first
{
}
}
z-index: 2;
color: #fff;
cursor: default;

View File

@@ -1,3 +1,8 @@
var scripts = document.getElementsByTagName("script"),
file_path = scripts[scripts.length-1].src;
var pos = file_path.search("plugins");
var path = file_path.substring(0,pos);
//var i = file_path.indexOf("plugins");
$.fn.dataTable.ext.errMode = 'throw';
/* Set the defaults for DataTables initialisation */
$.extend( true, $.fn.dataTable.defaults, {
@@ -7,11 +12,20 @@ $.extend( true, $.fn.dataTable.defaults, {
"<'row'<'col-xs-6'i><'col-xs-6'p>>",
"oLanguage": {
"sLengthMenu": "_MENU_ Records per page",
"sSearch" : "Search: "
}
"sSearch" : "Search: ",
"sProcessing": '<img id="blur-bg" class="backgroundfadein" style="top:40%;left:50%; width: 50px; height:50 px; display: block; position: fixed;" src="'+path+'/media/images/gifloader3.gif">'
},
"fnDrawCallback": function( oSettings ) {
$(".box-body").css({"opacity": "1"});
$('#blur-bg').css({"opacity": "1", "z-index": "99999"});
},
"fnPreDrawCallback": function(oSettings, json) {
$(".box-body").css({"opacity":"0.4"});
}
} );
/* Default class modification */
$.extend( $.fn.dataTableExt.oStdClasses, {
"sWrapper": "dataTables_wrapper form-inline",