modified permissions
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 184 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
|
@ -22,10 +22,10 @@ if (typeof jQuery === "undefined") {
|
||||||
*
|
*
|
||||||
* @type Object
|
* @type Object
|
||||||
* @description $.AdminLTE is the main object for the template's app.
|
* @description $.AdminLTE is the main object for the template's app.
|
||||||
* It's used for implementing functions and options related
|
* It's used for implementing functions and options related
|
||||||
* to the template. Keeping everything wrapped in an object
|
* to the template. Keeping everything wrapped in an object
|
||||||
* prevents conflict with other plugins and is a better
|
* prevents conflict with other plugins and is a better
|
||||||
* way to organize our code.
|
* way to organize our code.
|
||||||
*/
|
*/
|
||||||
$.AdminLTE = {};
|
$.AdminLTE = {};
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ $.AdminLTE.options = {
|
||||||
enableBSToppltip: true,
|
enableBSToppltip: true,
|
||||||
BSTooltipSelector: "[data-toggle='tooltip']",
|
BSTooltipSelector: "[data-toggle='tooltip']",
|
||||||
//Enable Fast Click. Fastclick.js creates a more
|
//Enable Fast Click. Fastclick.js creates a more
|
||||||
//native touch ecperience with touch devices. If you
|
//native touch experience with touch devices. If you
|
||||||
//choose to enable the plugin, make sure you load the script
|
//choose to enable the plugin, make sure you load the script
|
||||||
//before AdminLTE's app.js
|
//before AdminLTE's app.js
|
||||||
enableFastclick: true,
|
enableFastclick: true,
|
||||||
|
@ -321,7 +321,7 @@ $.AdminLTE.tree = function (menu) {
|
||||||
*
|
*
|
||||||
* @type Object
|
* @type Object
|
||||||
* @usage $.AdminLTE.boxWidget.activate()
|
* @usage $.AdminLTE.boxWidget.activate()
|
||||||
* Set all of your option in the main $.AdminLTE.options object
|
* Set all of your option in the main $.AdminLTE.options object
|
||||||
*/
|
*/
|
||||||
$.AdminLTE.boxWidget = {
|
$.AdminLTE.boxWidget = {
|
||||||
activate: function () {
|
activate: function () {
|
||||||
|
@ -378,7 +378,7 @@ $.AdminLTE.boxWidget = {
|
||||||
* This is a custom plugin to use with the compenet BOX. It allows you to add
|
* This is a custom plugin to use with the compenet BOX. It allows you to add
|
||||||
* a refresh button to the box. It converts the box's state to a loading state.
|
* a refresh button to the box. It converts the box's state to a loading state.
|
||||||
*
|
*
|
||||||
* @type plugin
|
* @type plugin
|
||||||
* @usage $("#box-widget").boxRefresh( options );
|
* @usage $("#box-widget").boxRefresh( options );
|
||||||
*/
|
*/
|
||||||
(function ($) {
|
(function ($) {
|
||||||
|
@ -400,7 +400,7 @@ $.AdminLTE.boxWidget = {
|
||||||
}, options);
|
}, options);
|
||||||
|
|
||||||
//The overlay
|
//The overlay
|
||||||
var overlay = $('<div class="overlay"></div><div class="loading-img"></div>');
|
var overlay = $('<div class="overlay"><div class="fa fa-refresh fa-spin"></div></div>');
|
||||||
|
|
||||||
return this.each(function () {
|
return this.each(function () {
|
||||||
//if a source is specified
|
//if a source is specified
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "AdminLTE",
|
"name": "AdminLTE",
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "~0.4.5",
|
"grunt": "~0.4.5",
|
||||||
"grunt-contrib-less": "~0.12.0",
|
"grunt-contrib-less": "^0.12.0",
|
||||||
|
"grunt-contrib-uglify": "^0.7.0",
|
||||||
"grunt-contrib-watch": "~0.6.1",
|
"grunt-contrib-watch": "~0.6.1",
|
||||||
"grunt-contrib-uglify": "~0.7.0"
|
"grunt-includes": "^0.4.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|