mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
//! Author: Martin K. Schröder <mkschreder.uk@gmail.com>
|
|
|
|
JUCI.app
|
|
.controller("DropbearSettings", function($scope, $uci){
|
|
$uci.sync("dropbear").done(function(){
|
|
if($uci.dropbear && $uci.dropbear.settings){
|
|
$scope.dropbear = $uci.dropbear.settings;
|
|
$scope.$apply();
|
|
}
|
|
});
|
|
$scope.onSave = function(){
|
|
$uci.save();
|
|
}
|
|
});
|