1b9c3ab88c08b1eddaed2caac6b3b7d775fc8008
[lhc/web/wiklou.git] / js2 / mwEmbed / libAddMedia / searchLibs / flickrSearch.js
1 var flickrOrgSearch = function ( iObj){
2 return this.init( iObj );
3 }
4 flickrOrgSearch.prototype = {
5 init:function( iObj ){
6 //init base class and inherit:
7 var baseSearch = new baseRemoteSearch( iObj );
8 for(var i in baseSearch){
9 if(typeof this[i] =='undefined'){
10 this[i] = baseSearch[i];
11 }else{
12 this['parent_'+i] = baseSearch[i];
13 }
14 }
15 //inherit the cp settings for
16 },
17 getSearchResults:function(){
18 //call parent:
19 this.parent_getSearchResults();
20 //setup the flickr request:
21 }
22 }