(function(Ext) {
Ext.sandboxName = 'Ext6';
Ext.isSandboxed = true;
Ext.buildSettings = { baseCSSPrefix: "x6-", scopeResetCSS: true };
/*
This file is part of Ext JS 6.2.0.981
Copyright (c) 2011-2016 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Version: 6.2.0.981 Build date: 2016-08-31 14:49:44 (08dbbd0ec0b8bc0e014d725fdb7d9650d510b343)
*/
// @tag core
// @define Ext.Boot
var Ext = Ext || {};
//<editor-fold desc="Boot">
/**
* @class Ext.Boot
* @singleton
* @private
*/
Ext.Boot = Ext.Boot || (function(emptyFn) {
var doc = document,
_emptyArray = [],
_config = {
/**
* @cfg {Boolean} [disableCaching=true]
* If `true` current timestamp is added to script URL's to prevent caching.
* In debug builds, adding a "cache" or "disableCacheBuster" query parameter
* to the page's URL will set this to `false`.
*/
disableCaching: (/[?&](?:cache|disableCacheBuster)\b/i.test(location.search) || !(/http[s]?\:/i.test(location.href)) || /(^|[ ;])ext-cache=1/.test(doc.cookie)) ? false : true,
/**
* @cfg {String} [disableCachingParam="_dc"]
* The query parameter name for the cache buster's timestamp.
*/
disableCachingParam: '_dc',
/**
* @cfg {Boolean} loadDelay
* Millisecond delay between asynchronous script injection (prevents stack
* overflow on some user agents) 'false' disables delay but potentially
* increases stack load.
*/
loadDelay: false,
/**
* @cfg {Boolean} preserveScripts
* `false` to remove asynchronously loaded scripts, `true` to retain script
* element for browser debugger compatibility and improved load performance.
*/
preserveScripts: true,
/**
* @cfg {String} [charset=UTF-8]
* Optional charset to specify encoding of dynamic content.
*/
charset: 'UTF-8'
},
_assetConfig = {},
cssRe = /\.css(?:\?|$)/i,
resolverEl = doc.createElement('a'),
isBrowser = typeof window !== 'undefined',
_environment = {
browser: isBrowser,
node: !isBrowser && (typeof require === 'function'),
phantom: (window && (window._phantom || window.callPhantom)) || /PhantomJS/.test(window.navigator.userAgent)
},
_tags = (Ext.platformTags = {}),
// All calls to _debug are commented out to speed up old browsers a bit;
// yes that makes a difference because the cost of concatenating strings
// and passing them into _debug() adds up pretty quickly.
_debug = function(message) {},
//console.log(message);
_apply = function(object, config, defaults) {
if (defaults) {
_apply(object, defaults);
}
if (object && config && typeof config === 'object') {
for (var i in config) {
object[i] = config[i];
}
}
return object;
},
_merge = function() {
var lowerCase = false,
obj = Array.prototype.shift.call(arguments),
index, i, len, value;
if (typeof arguments[arguments.length - 1] === 'boolean') {
lowerCase = Array.prototype.pop.call(arguments);
}
len = arguments.length;
for (index = 0; index < len; index++) {
value = arguments[index];
if (typeof value === 'object') {
for (i in value) {
obj[lowerCase ? i.toLowerCase() : i] = value[i];
}
}
}
return obj;
},
_getKeys = (typeof Object.keys == 'function') ? function(object) {
if (!object) {
return [];
}
return Object.keys(object);
} : function(object) {
var keys = [],
property;
for (property in object) {
if (object.hasOwnProperty(property)) {
keys.push(property);
}
}
return keys;
},
/*
* The Boot loader class manages Request objects that contain one or
* more individual urls that need to be loaded. Requests can be performed
* synchronously or asynchronously, but will always evaluate urls in the
* order specified on the request object.
*/
Boot = {
loading: 0,
loaded: 0,
apply: _apply,
env: _environment,
config: _config,
/**
* @cfg {Object} assetConfig
* A map (url->assetConfig) that contains information about assets loaded by the Microlaoder.
*/
assetConfig: _assetConfig,
// Keyed by absolute URL this object holds "true" if that URL is already loaded
// or an array of callbacks to call once it loads.
scripts: {},
/*
Entry objects
'http://foo.com/bar/baz/Thing.js': {
done: true,
el: scriptEl || linkEl,
preserve: true,
requests: [ request1, ... ]
}
*/
/**
* contains the current script name being loaded
* (loadSync or sequential load only)
*/
currentFile: null,
suspendedQueue: [],
currentRequest: null,
// when loadSync is called, need to cause subsequent load requests to also be loadSync,
// eg, when Ext.require(...) is called
syncMode: false,
/*
* simple helper method for debugging
*/
debug: _debug,
/**
* enables / disables loading scripts via script / link elements rather
* than using ajax / eval
*/
useElements: true,
listeners: [],
Request: Request,
Entry: Entry,
allowMultipleBrowsers: false,
browserNames: {
ie: 'IE',
firefox: 'Firefox',
safari: 'Safari',
chrome: 'Chrome',
opera: 'Opera',
dolfin: 'Dolfin',
edge: 'Edge',
webosbrowser: 'webOSBrowser',
chromeMobile: 'ChromeMobile',
chromeiOS: 'ChromeiOS',
silk: 'Silk',
other: 'Other'
},
osNames: {
ios: 'iOS',
android: 'Android',
windowsPhone: 'WindowsPhone',
webos: 'webOS',
blackberry: 'BlackBerry',
rimTablet: 'RIMTablet',
mac: 'MacOS',
win: 'Windows',
tizen: 'Tizen',
linux: 'Linux',
bada: 'Bada',
chromeOS: 'ChromeOS',
other: 'Other'
},
browserPrefixes: {
ie: 'MSIE ',
edge: 'Edge/',
firefox: 'Firefox/',
chrome: 'Chrome/',
saf
没有合适的资源?快使用搜索试试~ 我知道了~
Extjs6.2 生成的admin-dashboard官方模板
共8681个文件
png:3032个
js:2424个
scss:1181个
4星 · 超过85%的资源 需积分: 0 66 下载量 98 浏览量
2017-06-22
09:39:06
上传
评论
收藏 42.49MB ZIP 举报
温馨提示
Extjs6.2 生成的admin-dashboard官方模板
资源推荐
资源详情
资源评论
收起资源包目录
Extjs6.2 生成的admin-dashboard官方模板 (8681个子文件)
sencha.cfg 2KB
sencha.cfg 1KB
sencha.cfg 758B
sencha.cfg 737B
sencha.cfg 723B
sencha.cfg 708B
sencha.cfg 701B
sencha.cfg 700B
sencha.cfg 697B
sencha.cfg 685B
sencha.cfg 517B
sencha.cfg 506B
sencha.cfg 493B
sencha.cfg 401B
sencha.cfg 399B
sencha.cfg 398B
sencha.cfg 395B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 389B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 376B
sencha.cfg 375B
sencha.cfg 375B
sencha.cfg 375B
sencha.cfg 372B
sencha.cfg 364B
sencha.cfg 364B
sencha.cfg 364B
sencha.cfg 364B
sencha.cfg 363B
Admin-all_1.css 336KB
Admin-all_2.css 334KB
Admin-example_2.css 331KB
Admin-example_1.css 323KB
Admin-example_3.css 289KB
Admin-all_3.css 166KB
Admin-all.css 138KB
demo.css 2KB
demo.css 2KB
demo.css 2KB
style.css 1KB
style.css 1KB
style.css 1KB
slicer.css 410B
example.css 378B
example.css 374B
example.css 370B
example.css 362B
example.css 362B
example.css 360B
example.css 358B
example.css 356B
example.css 356B
example.css 347B
slicer.css 319B
bootstrap.css 302B
bootstrap.css 167B
Admin-example.css 93B
bootstrap.css 85B
Admin-all.css 81B
.cvsignore 6B
fontawesome-webfont.eot 67KB
fontawesome-webfont.eot 67KB
fontawesome-webfont.eot 67KB
pictos-web.eot 18KB
pictos-web.eot 18KB
pictos-web.eot 18KB
ext-watermark.eot 11KB
ext-watermark.eot 11KB
ext-watermark.eot 11KB
ExtJS.eot 10KB
ExtJS.eot 10KB
ExtJS.eot 10KB
ios7.eot 2KB
tool-sprites.gif 6KB
tool-sprites.gif 5KB
btn.gif 4KB
error-tip-corners.gif 4KB
error-tip-corners.gif 4KB
trigger.gif 4KB
trigger-rtl.gif 4KB
trigger-rtl.gif 4KB
default-menubar-menu-parent.gif 3KB
btn.gif 3KB
default-menubar-menu-parent.gif 3KB
large-loading.gif 3KB
blue-loading.gif 3KB
large-loading.gif 3KB
blue-loading.gif 3KB
共 8681 条
- 1
- 2
- 3
- 4
- 5
- 6
- 87
return_false_
- 粉丝: 2
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于Java语言的Minecraft竞赛核心设计源码
- comsol光子晶体仿真 在平带上调控merging BIC,包含三维能带,Q因子计算,Q因子拟合 如需后面的远场偏振计算另加
- 基于Java的Webview自动化模拟用户行为设计源码
- 基于Java语言的乐尚代驾OK啦项目父包设计源码
- 基于Python的HiJacker博客网站设计源码
- 乘用车制动轮缸建模,simulink模型,以及amesim模型,simulink和amesim联合仿真模型及验证,不是相关文献上
- 基于深度学习的图像细胞分割Python设计源码Demo演示
- 光纤光栅Matlab仿真文件 长周期光纤光栅 LPFG 布拉格光纤光栅 FBG 光纤光栅 透射谱 可任意更改光纤光栅的各种参数和
- 基于Html和JavaScript的案例库设计源码分享
- 基于Java语言的尚庭公寓设计源码学习与实践
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页