mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-06 08:10:12 +03:00
Use human-readable way to define history window params
This commit is contained in:
parent
e333ff3d27
commit
1914b23c74
@ -51,7 +51,7 @@
|
|||||||
var user = Mibew.Objects.Models.user;
|
var user = Mibew.Objects.Models.user;
|
||||||
var link = this.model.get('link');
|
var link = this.model.get('link');
|
||||||
if (user.get('isAgent') && link) {
|
if (user.get('isAgent') && link) {
|
||||||
var winParams = this.model.get('windowParams');
|
var winParams = Mibew.Utils.buildWindowParams(this.model.get('windowParams'));
|
||||||
|
|
||||||
// TODO: Kill & at the server side
|
// TODO: Kill & at the server side
|
||||||
link = link.replace('&', '&', 'g');
|
link = link.replace('&', '&', 'g');
|
||||||
|
@ -364,7 +364,7 @@ function setup_chatview(Thread $thread)
|
|||||||
$page_style = new PageStyle(PageStyle::getCurrentStyle());
|
$page_style = new PageStyle(PageStyle::getCurrentStyle());
|
||||||
$style_config = $page_style->getConfigurations();
|
$style_config = $page_style->getConfigurations();
|
||||||
$data['chat']['windowsParams']['history']
|
$data['chat']['windowsParams']['history']
|
||||||
= $style_config['history']['window_params'];
|
= $style_config['history']['window'];
|
||||||
|
|
||||||
$data['startFrom'] = 'chat';
|
$data['startFrom'] = 'chat';
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ class PageStyle extends AbstractHandlebarsPoweredStyle implements StyleInterface
|
|||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'history' => array(
|
'history' => array(
|
||||||
'window_params' => '',
|
'window' => array(),
|
||||||
),
|
),
|
||||||
'users' => array(
|
'users' => array(
|
||||||
'thread_tag' => 'div',
|
'thread_tag' => 'div',
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
# This file determines some core styles options
|
# This file determines some core styles options
|
||||||
|
|
||||||
history:
|
history:
|
||||||
# window_param use as param string in JavaScript window.open method
|
# These params are used for history windows opened via JavaScript's window.open.
|
||||||
window_params: "toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=720,height=560,resizable=1"
|
window:
|
||||||
|
width: 720
|
||||||
|
height: 560
|
||||||
|
resizable: true
|
||||||
|
|
||||||
users:
|
users:
|
||||||
# Use as wrap tag for the thread element
|
# Use as wrap tag for the thread element
|
||||||
|
Loading…
Reference in New Issue
Block a user