more work on Admin. added FamFamFam icon set
This commit is contained in:
parent
5e77a948ad
commit
64f7bd9365
1004 changed files with 129 additions and 10 deletions
25
www/extras/admin/admin.js
Normal file
25
www/extras/admin/admin.js
Normal 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();
|
||||
};
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue