more work on Admin. added FamFamFam icon set

This commit is contained in:
Doug Bell 2010-04-06 15:45:42 -05:00
parent 5e77a948ad
commit 64f7bd9365
1004 changed files with 129 additions and 10 deletions

25
www/extras/admin/admin.js Normal file
View file

@ -0,0 +1,25 @@
if ( typeof WebGUI == "undefined" ) {
WebGUI = {};
}
WebGUI.Admin = {};
WebGUI.Admin.LocationBar = (function(){
// Public stuff
return function (id) {
this.id = id;
var self = this;
// Private members
var _element = document.getElementById( self.id );
function _init () {
_element.appendChild( document.createTextNode( "Location Bar" ) );
}
_init();
};
})();