Sha256: 5edf8b818e8f4361ab0a6e2a399ccf8c83699ecd88057784f571849b441af26b

Contents?: true

Size: 1.39 KB

Versions: 5

Compression:

Stored size: 1.39 KB

Contents

// Place all the behaviors and hooks related to the matching controller here.
// All this logic will automatically be available in application.js.
//
// I require jquery everywhere

//= require jquery
// require jquery_ujs

// I require jquery_ujs everywhere

$(document).ready(function(){

     var   path = window.location.pathname;

     var path = path.split("/")




            $('.tabs').find('li').each(function(){


                    if($(this).text().toLowerCase() == path[2] ){

                        $(this).find('a').addClass('selected')
                    }
                    else{

                        $(this).find('a').removeClass('selected')
                    }

                    if(path[2] == "layouts"){

                        if($(this).text().toLowerCase() == "pages" ){

                        $(this).find('a').addClass('selected')
                    }
                    else{

                        $(this).find('a').removeClass('selected')
                    }

                    }

                    if((path[2] == "role") || (path[2] == "roles")){

                        if($(this).text().toLowerCase() == "users" ){

                        $(this).find('a').addClass('selected')
                    }
                    else{

                        $(this).find('a').removeClass('selected')
                    }

                    }

            })



})

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mcms-1.0.1 app/assets/javascripts/dashboard.js
mcms-1.0.0 app/assets/javascripts/dashboard.js
mcms-0.0.4 app/assets/javascripts/dashboard.js
mcms-0.0.3 app/assets/javascripts/dashboard.js
mcms-0.0.2 app/assets/javascripts/dashboard.js