title and heading and welcome msg…
This commit is contained in:
parent
c3eef6eaa6
commit
3eaf97babe
|
@ -743,6 +743,7 @@ orbitDesktop.prototype.notifyImgPath = "temp";
|
|||
orbitDesktop.prototype.wallpaperPath = "/assets/stockBackground/";
|
||||
orbitDesktop.prototype.iconPath = "/assets/icons/";
|
||||
orbitDesktop.prototype.currentLanguage = "en";
|
||||
orbitDesktop.prototype.currentUsername = "Harry";
|
||||
var uselessfunction = function(){
|
||||
$.post("/desktop/temp_func",{sectionid:"4f83e7bbbd98eb041600001d"});
|
||||
}
|
||||
|
|
|
@ -6,6 +6,8 @@ class DesktopController< ApplicationController
|
|||
|
||||
def index
|
||||
@desktop = current_user.desktop
|
||||
@currentusername = current_user.name
|
||||
@title = "Desktop - " + @currentusername
|
||||
@section = @desktop.sections.first
|
||||
end
|
||||
|
||||
|
|
|
@ -87,14 +87,14 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
orbitDesktop.prototype.themefolder = "desktop_themes";
|
||||
orbitDesktop.prototype.notifyImgPath = "/assets/";
|
||||
orbitDesktop.prototype.desktopId = "<%= @desktop.id %>";
|
||||
orbitDesktop.prototype.sectionId = "<%= @section.id %>";
|
||||
orbitDesktop.prototype.currentLanguage = "<%= I18n.locale %>";
|
||||
orbitDesktop.prototype.currentUsername = "<%= @currentusername %>";
|
||||
//uselessfunction();
|
||||
var od = new orbitDesktop("#ajax_container");
|
||||
// o.notify("Notification Working!!","imp",3)
|
||||
o.notify("Welcome "+o.currentUsername+"!!","alert",3);
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue