Use crossbrowser compatible attr. names

This commit is contained in:
Tor Hveem 2014-07-07 20:11:14 +02:00
parent 6318a94163
commit 836b2940ce

View file

@ -856,9 +856,9 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
// Save setting for playing sound on notification // Save setting for playing sound on notification
$store.bind($scope, "soundnotification", false); $store.bind($scope, "soundnotification", false);
// Save setting for font family // Save setting for font family
$store.bind($scope, "fontfamily", getClassStyle('monospace', 'font-family')); $store.bind($scope, "fontfamily", getClassStyle('monospace', 'fontFamily'));
// Save setting for font size // Save setting for font size
$store.bind($scope, "fontsize", getClassStyle('monospace', 'font-size')); $store.bind($scope, "fontsize", getClassStyle('monospace', 'fontSize'));
// Save setting for displaying embeds in rootScope so it can be used from service // Save setting for displaying embeds in rootScope so it can be used from service
$rootScope.visible = $scope.noembed === false; $rootScope.visible = $scope.noembed === false;
@ -909,11 +909,11 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
// Update font family when changed // Update font family when changed
$scope.$watch('fontfamily', function() { $scope.$watch('fontfamily', function() {
changeClassStyle('monospace', 'font-family', $scope.fontfamily); changeClassStyle('monospace', 'fontFamily', $scope.fontfamily);
}); });
// Update font size when changed // Update font size when changed
$scope.$watch('fontsize', function() { $scope.$watch('fontsize', function() {
changeClassStyle('monospace', 'font-size', $scope.fontsize); changeClassStyle('monospace', 'fontSize', $scope.fontsize);
}); });
$scope.setActiveBuffer = function(bufferId, key) { $scope.setActiveBuffer = function(bufferId, key) {