Make pdfjs default if not set

This commit is contained in:
James Allen 2014-07-16 17:05:57 +01:00
parent 9064a9d9df
commit abf04f7e1a

View file

@ -4,6 +4,9 @@ define [
App.controller "SettingsController", ["$scope", "settings", "ide", ($scope, settings, ide) ->
if $scope.settings.mode not in ["default", "vim", "emacs"]
$scope.settings.mode = "default"
if $scope.settings.pdfViewer not in ["pdfjs", "native"]
$scope.settings.pdfViewer = "pdfjs"
$scope.$watch "settings.theme", (theme, oldTheme) =>
if theme != oldTheme