Skip to content

Commit

Permalink
Merge branch 'release/1.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Gipetto committed Aug 2, 2011
2 parents d131118 + 467644c commit 8e8d931
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions assets/j/compiled/1009/site.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions assets/j/plugins/call-and-sms-dialogs.js
Expand Up @@ -223,7 +223,7 @@ $(function () {
clientDialNumber();
}
else {
deviceDialNumber(event);
deviceDialNumber(event, this);
}
};

Expand All @@ -236,13 +236,13 @@ $(function () {
$('.close', dialog).click();
};

var deviceDialNumber = function(event) {
var deviceDialNumber = function(event, clicked) {
$('.invoke-call-button span').text('Calling...');
$('.call-dialing').show();

var link = $(this).data('link');
var link = $(clicked).data('link');
$(this).prop('disabled', true);
var button = $(this);
var button = $(clicked);
$.ajax({
url : OpenVBX.home + '/messages/call',
data : $('form input, form select', dialog),
Expand Down
3 changes: 2 additions & 1 deletion updates/49.php
Expand Up @@ -10,7 +10,8 @@ function runUpdate_49() {
$ci->load->dbforge();
$ci->dbforge->add_column('users', array(
'online' => array(
'type' => 'TINYINT(1)',
'type' => 'TINYINT',
'constraint' => '1',
'default' => '9'
)
));
Expand Down

0 comments on commit 8e8d931

Please sign in to comment.