refactored title in settings modal in angular
This commit is contained in:
parent
7d1129275b
commit
67785b2560
|
@ -409,12 +409,11 @@ http://ex1.com/f2.mp4 http://ex2.com/f2.mp4
|
||||||
<div class="modal hide" modal="globalSettings.shown">
|
<div class="modal hide" modal="globalSettings.shown">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button class="close" ng-click="globalSettings.close()">x</button>
|
<button class="close" ng-click="globalSettings.close()">x</button>
|
||||||
<h3>Global Settings</h3>
|
<h3>{{globalSettings.title}}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="form-horizontal modal-body">
|
<form class="form-horizontal modal-body">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Global Settings</legend>
|
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div ng-repeat="(name, set) in globalSettings.settings">
|
<div ng-repeat="(name, set) in globalSettings.settings">
|
||||||
<label class="control-label">{{name}}</label>
|
<label class="control-label">{{name}}</label>
|
||||||
|
|
|
@ -86,9 +86,11 @@ angular
|
||||||
scope.globalSettings = {
|
scope.globalSettings = {
|
||||||
shown: false,
|
shown: false,
|
||||||
settings: [],
|
settings: [],
|
||||||
init: function(settings, cb) {
|
title: 'Settings',
|
||||||
|
init: function(settings, title, cb) {
|
||||||
this.cb = cb;
|
this.cb = cb;
|
||||||
this.settings = settings;
|
this.settings = settings;
|
||||||
|
this.title = title || title;
|
||||||
this.shown = true;
|
this.shown = true;
|
||||||
},
|
},
|
||||||
success: function() {
|
success: function() {
|
||||||
|
|
|
@ -49,7 +49,7 @@ angular
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
modals.invoke('globalSettings', settings, function(settings) {
|
modals.invoke('globalSettings', settings, 'Global Settings', function(settings) {
|
||||||
var sets = {};
|
var sets = {};
|
||||||
for (var i in settings) { sets[i] = settings[i].val };
|
for (var i in settings) { sets[i] = settings[i].val };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user