mirror of
https://github.com/LBPUnion/bgtoolset.git
synced 2025-04-19 19:15:06 +00:00
Add files via upload
This commit is contained in:
parent
927408de89
commit
cc12f5f8e0
12 changed files with 70 additions and 0 deletions
1
files/PS3FP9NC.swf
Normal file
1
files/PS3FP9NC.swf
Normal file
File diff suppressed because one or more lines are too long
1
files/PS3Loader.swf
Normal file
1
files/PS3Loader.swf
Normal file
File diff suppressed because one or more lines are too long
10
files/nofsm_patch_sha1.sum
Normal file
10
files/nofsm_patch_sha1.sum
Normal file
|
@ -0,0 +1,10 @@
|
|||
9a8a1901b4f68ec1149e3a09eecb600df6b8c5f5 nofsm_patch_480.bin
|
||||
fbccae92dd7e1908aa8251986d43598d8ec9ebaf nofsm_patch_481.bin
|
||||
1d50d03e4c446da2a547bf5e182900ff0d6ac1c7 nofsm_patch_482.bin
|
||||
30333fb94c437200812058206e26d62030c13dfc nofsm_patch_483.bin
|
||||
846499da8ea6b193a937a9ba5f1c9236d0e020d3 nofsm_patch_484.bin
|
||||
cd245ab93753a31eff19b8f8a4b55f0ee08a85c2 nofsm_patch_485.bin
|
||||
ab9224b4acf307ca4600684a066edb506f77dec3 nofsm_patch_486.bin
|
||||
231488e8664b62ea10998f71e0a5ba677e1bdb8d nofsm_patch_487.bin
|
||||
f0588f24db7e793256f8de08948ef23340b3bff3 nofsm_patch_488.bin
|
||||
df9901c08e3aaa1ae97aa980e22e57aeee6a3da6 nofsm_patch_489.bin
|
1
files/xframework.min.js
vendored
Normal file
1
files/xframework.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
js/jquery-1.12.4.min.js
vendored
Normal file
5
js/jquery-1.12.4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
13
js/jquery-ui.min.js
vendored
Normal file
13
js/jquery-ui.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
30
js/jquery.switchButton.min.js
vendored
Normal file
30
js/jquery.switchButton.min.js
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
(function($){$.widget("sylightsUI.switchButton",{options:{checked:undefined,show_labels:!0,labels_placement:"both",on_label:"ON",off_label:"OFF",width:25,height:11,button_width:12,clear:!0,clear_after:null,on_callback:undefined,off_callback:undefined},_create:function(){if(this.options.checked===undefined){this.options.checked=this.element.prop("checked")}
|
||||
this._initLayout();this._initEvents()},_initLayout:function(){this.element.hide();this.off_label=$("<span>").addClass("gui-item switch-button-label");this.on_label=$("<span>").addClass("gui-item switch-button-label");this.button_bg=$("<div>").addClass("switch-button-background");this.button=$("<div>").addClass("gui-item switch-button-button");this.off_label.insertAfter(this.element);this.button_bg.insertAfter(this.off_label);this.on_label.insertAfter(this.button_bg);this.button_bg.append(this.button);if(this.options.clear)
|
||||
{if(this.options.clear_after===null){this.options.clear_after=this.on_label}
|
||||
$("<div>").css({clear:"left"}).insertAfter(this.options.clear_after)}
|
||||
this._refresh();this.options.checked=!this.options.checked;this._toggleSwitch(!0)},_refresh:function(){if(this.options.show_labels){this.off_label.show();this.on_label.show()}
|
||||
else{this.off_label.hide();this.on_label.hide()}
|
||||
switch(this.options.labels_placement){case "both":{if(this.button_bg.prev()!==this.off_label||this.button_bg.next()!==this.on_label)
|
||||
{this.off_label.detach();this.on_label.detach();this.off_label.insertBefore(this.button_bg);this.on_label.insertAfter(this.button_bg);this.on_label.addClass(this.options.checked?"on":"off").removeClass(this.options.checked?"off":"on");this.off_label.addClass(this.options.checked?"off":"on").removeClass(this.options.checked?"on":"off")}
|
||||
break}
|
||||
case "left":{if(this.button_bg.prev()!==this.on_label||this.on_label.prev()!==this.off_label)
|
||||
{this.off_label.detach();this.on_label.detach();this.off_label.insertBefore(this.button_bg);this.on_label.insertBefore(this.button_bg);this.on_label.addClass("on").removeClass("off");this.off_label.addClass("off").removeClass("on");this.button.addClass("on").removeClass("off")}
|
||||
break}
|
||||
case "right":{if(this.button_bg.next()!==this.off_label||this.off_label.next()!==this.on_label)
|
||||
{this.off_label.detach();this.on_label.detach();this.off_label.insertAfter(this.button_bg);this.on_label.insertAfter(this.off_label);this.on_label.addClass("on").removeClass("off");this.off_label.addClass("off").removeClass("on")}
|
||||
break}}
|
||||
this.on_label.html(this.options.on_label);this.off_label.html(this.options.off_label);this.button_bg.width(this.options.width);this.button_bg.height(this.options.height);this.button.width(this.options.button_width);this.button.height(this.options.height)},_initEvents:function(){var self=this;this.button_bg.click(function(e){e.preventDefault();e.stopPropagation();self._toggleSwitch(!1);return!1});this.button.click(function(e){e.preventDefault();e.stopPropagation();self._toggleSwitch(!1);return!1});this.on_label.click(function(e){if(self.options.checked&&self.options.labels_placement==="both"){return!1}
|
||||
self._toggleSwitch(!1);return!1});this.off_label.click(function(e){if(!self.options.checked&&self.options.labels_placement==="both"){return!1}
|
||||
self._toggleSwitch(!1);return!1});this.element.parent().click(function(e){if(!self.options.checked&&self.options.labels_placement==="both"){return!1}
|
||||
self._toggleSwitch(!1);return!1})},_setOption:function(key,value){if(key==="checked"){this._setChecked(value);return}
|
||||
this.options[key]=value;this._refresh()},_setChecked:function(value){if(value===this.options.checked){return}
|
||||
this.options.checked=!value;this._toggleSwitch(!1)},_toggleSwitch:function(isInitializing){if(!isInitializing&&(this.element.attr('readonly')=='readonly'||this.element.prop('disabled')))
|
||||
return;this.options.checked=!this.options.checked;var newLeft="";if(this.options.checked){this.element.prop("checked",!0);this.element.change();var dLeft=this.options.width-this.options.button_width;newLeft="+="+dLeft;if(this.options.labels_placement=="both")
|
||||
{this.off_label.removeClass("on").addClass("off");this.on_label.removeClass("off").addClass("on")}
|
||||
else{this.off_label.hide();this.on_label.show()}
|
||||
this.button_bg.addClass("checked");this.button.addClass("on").removeClass("off");if(typeof this.options.on_callback==='function')this.options.on_callback.call(this)}
|
||||
else{this.element.prop("checked",!1);this.element.change();newLeft="-1px";if(this.options.labels_placement=="both")
|
||||
{this.off_label.removeClass("off").addClass("on");this.on_label.removeClass("on").addClass("off")}
|
||||
else{this.off_label.show();this.on_label.hide()}
|
||||
this.button_bg.removeClass("checked");this.button.addClass("off").removeClass("on");if(typeof this.options.off_callback==='function')this.options.off_callback.call(this)}
|
||||
this.button.animate({left:newLeft},250,"easeInOutCubic")}})})(jQuery)
|
1
js/js.cookie.min.js
vendored
Normal file
1
js/js.cookie.min.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function(e){var n;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var t=window.Cookies,o=window.Cookies=e();o.noConflict=function(){return window.Cookies=t,o}}}(function(){function f(){for(var e=0,n={};e<arguments.length;e++){var t=arguments[e];for(var o in t)n[o]=t[o]}return n}function a(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function e(u){function c(){}function t(e,n,t){if("undefined"!=typeof document){"number"==typeof(t=f({path:"/"},c.defaults,t)).expires&&(t.expires=new Date(1*new Date+864e5*t.expires)),t.expires=t.expires?t.expires.toUTCString():"";try{var o=JSON.stringify(n);/^[\{\[]/.test(o)&&(n=o)}catch(e){}n=u.write?u.write(n,e):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var r="";for(var i in t)t[i]&&(r+="; "+i,!0!==t[i]&&(r+="="+t[i].split(";")[0]));return document.cookie=e+"="+n+r}}function n(e,n){if("undefined"!=typeof document){for(var t={},o=document.cookie?document.cookie.split("; "):[],r=0;r<o.length;r++){var i=o[r].split("="),c=i.slice(1).join("=");n||'"'!==c.charAt(0)||(c=c.slice(1,-1));try{var f=a(i[0]);if(c=(u.read||u)(c,f)||a(c),n)try{c=JSON.parse(c)}catch(e){}if(t[f]=c,e===f)break}catch(e){}}return e?t[e]:t}}return c.set=t,c.get=function(e){return n(e,!1)},c.getJSON=function(e){return n(e,!0)},c.remove=function(e,n){t(e,"",f(n,{expires:-1}))},c.defaults={},c.withConverter=e,c}(function(){})});
|
1
js/jstree.min.js
vendored
Normal file
1
js/jstree.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
js/logger.min.js
vendored
Normal file
1
js/logger.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
js/mCustomScrollbar.concat.min.js
vendored
Normal file
5
js/mCustomScrollbar.concat.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
js/toastmessage.min.js
vendored
Normal file
1
js/toastmessage.min.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function(t){var e={inEffect:{opacity:"show"},inEffectDuration:600,stayTime:3e3,text:"",sticky:!1,type:"notice",position:"top-right",closeText:"",close:null},o={init:function(o){o&&t.extend(e,o)},showToast:function(o){var s,a,n,i={};return t.extend(i,e,o),s=t(".toast-container").length?t(".toast-container"):t("<div></div>").addClass("toast-container").addClass("toast-position-"+i.position).appendTo("body"),a=t("<div></div>").addClass("toast-item-wrapper"),n=t("<div></div>").hide().addClass("toast-item toast-type-"+i.type).appendTo(s).html(t("<p>").append(i.text)).animate(i.inEffect,i.inEffectDuration).wrap(a),t("<div></div>").addClass("toast-item-close").prependTo(n).html(i.closeText).click(function(){t().toastmessage("removeToast",n,i)}),t("<div></div>").addClass("toast-item-image").addClass("toast-item-image-"+i.type).prependTo(n),navigator.userAgent.match(/MSIE 6/i)&&s.css({top:document.documentElement.scrollTop}),i.sticky||setTimeout(function(){t().toastmessage("removeToast",n,i)},i.stayTime),n},showNoticeToast:function(e){var o={text:e,type:"notice"};return t().toastmessage("showToast",o)},showSuccessToast:function(e){var o={text:e,type:"success"};return t().toastmessage("showToast",o)},showErrorToast:function(e){var o={text:e,type:"error"};return t().toastmessage("showToast",o)},showWarningToast:function(e){var o={text:e,type:"warning"};return t().toastmessage("showToast",o)},removeToast:function(t,e){t.animate({opacity:"0"},600,function(){t.parent().animate({height:"0px"},300,function(){t.parent().remove()})}),e&&null!==e.close&&e.close()}};t.fn.toastmessage=function(e){return o[e]?o[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void t.error("Method "+e+" does not exist on jQuery.toastmessage"):o.init.apply(this,arguments)}}(jQuery);
|
Loading…
Add table
Reference in a new issue