Moved "framework" to "iii".

This commit is contained in:
Qiang Xue
2013-05-09 12:00:15 -04:00
parent 15e1a79952
commit 0d814fa523
202 changed files with 4 additions and 4 deletions

26
yii/assets/yii.debug.js Normal file
View File

@@ -0,0 +1,26 @@
/**
* Yii debug module.
*
* This JavaScript module provides the functions needed by the Yii debug toolbar.
*
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
yii.debug = (function ($) {
return {
load: function (id, url) {
$.ajax({
url: url,
//dataType: 'json',
success: function(data) {
var $e = $('#' + id);
$e.html(data);
}
});
}
};
})(jQuery);