author | Michael Krelin <hacker@klever.net> | 2006-10-03 14:23:31 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-10-03 14:23:31 (UTC) |
commit | 31fb78eac7c5799be1fb4547f3abab17ed88727f (patch) (unidiff) | |
tree | 5fcce66b161010926df346470e16e3230aa76f94 /content | |
parent | 5ebff6dee62ada9c0559f65381ccd92892911151 (diff) | |
download | fireflix-31fb78eac7c5799be1fb4547f3abab17ed88727f.zip fireflix-31fb78eac7c5799be1fb4547f3abab17ed88727f.tar.gz fireflix-31fb78eac7c5799be1fb4547f3abab17ed88727f.tar.bz2 |
moved setting of .view into corresponding init()s
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@182 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/fireflix.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fireflix.js b/content/fireflix.js index 966630c..63a4118 100644 --- a/content/fireflix.js +++ b/content/fireflix.js | |||
@@ -28,7 +28,4 @@ var fireflix = { | |||
28 | this.flickr.prefs_root = 'net.klever.kin.fireflix'; | 28 | this.flickr.prefs_root = 'net.klever.kin.fireflix'; |
29 | this.flickr.load_token(); | 29 | this.flickr.load_token(); |
30 | document.getElementById('setslist').view = this.photosets; | ||
31 | document.getElementById('setphotos').view = this.photoset; | ||
32 | document.getElementById('uploadlist').view = this.uploads; | ||
33 | this.no_auth_info_label = this.auth_info.value; | 30 | this.no_auth_info_label = this.auth_info.value; |
34 | this.set_auth_state(this.flickr.token,false); | 31 | this.set_auth_state(this.flickr.token,false); |
@@ -98,4 +95,5 @@ var fireflix = { | |||
98 | this.fireflix = f; | 95 | this.fireflix = f; |
99 | pull_elements(this,document,[ 'set_photo' ]); | 96 | pull_elements(this,document,[ 'set_photo' ]); |
97 | document.getElementById('setphotos').view = this; | ||
100 | }, | 98 | }, |
101 | rowCount: 0, | 99 | rowCount: 0, |
@@ -167,4 +165,5 @@ var fireflix = { | |||
167 | init: function(f) { | 165 | init: function(f) { |
168 | this.fireflix = f; | 166 | this.fireflix = f; |
167 | document.getElementById('setslist').view = this; | ||
169 | }, | 168 | }, |
170 | rowCount: 0, | 169 | rowCount: 0, |
@@ -317,4 +316,5 @@ var fireflix = { | |||
317 | 'cmd_uploads_upload' | 316 | 'cmd_uploads_upload' |
318 | ]); | 317 | ]); |
318 | document.getElementById('uploadlist').view = this; | ||
319 | }, | 319 | }, |
320 | files: new Array(), | 320 | files: new Array(), |