first
This commit is contained in:
34
modules/admin/theme/kimsq-white/front.js
Normal file
34
modules/admin/theme/kimsq-white/front.js
Normal file
@@ -0,0 +1,34 @@
|
||||
var _isFullSize = false;
|
||||
var _isCodeEdit = false;
|
||||
function editFullSize(id,obj)
|
||||
{
|
||||
if (_isCodeEdit)
|
||||
{
|
||||
_codefullscreen();
|
||||
}
|
||||
else {
|
||||
if (_isFullSize == false)
|
||||
{
|
||||
obj.title = '원래대로';
|
||||
$('#'+id).addClass('rb-fullsize');
|
||||
_isFullSize = true;
|
||||
}
|
||||
else {
|
||||
obj.title = '전체화면';
|
||||
$('#'+id).removeClass('rb-fullsize');
|
||||
_isFullSize = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function goHref_parent(url) {
|
||||
parent.location.href = url;
|
||||
}
|
||||
|
||||
$(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
$('[data-tooltip="tooltip"]').tooltip({
|
||||
html: true
|
||||
})
|
||||
$('.js-tooltip').tooltip()
|
||||
})
|
||||
Reference in New Issue
Block a user