Quellcode durchsuchen

fix to profile_settings

version-14
Rushabh Mehta vor 13 Jahren
Ursprung
Commit
a7f3a33b83
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. +3
    -1
      js/wn/ui/appframe.js

+ 3
- 1
js/wn/ui/appframe.js Datei anzeigen

@@ -1,5 +1,5 @@
wn.ui.AppFrame = Class.extend({
init: function(parent) {
init: function(parent, title) {
this.buttons = {};
this.$w = $('<div></div>').appendTo(parent);
@@ -11,6 +11,8 @@ wn.ui.AppFrame = Class.extend({
this.$w.find('.close').click(function() {
window.history.back();
})
if(title) this.title(title);

},
title: function(txt) {


Laden…
Abbrechen
Speichern