blob: 1e8f6eaa1843eec346b13a8f3806b899906af827 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the 'License'); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
$(document).ready(function() {
function PageNav(conf) {
var idPageNav = conf["classNamePageNav"];
var idMainContainer = conf["classNameMainContainer"];
var CONST = {
DESKTOP_BREAKPOINT: 1024,
PAGENAV_WIDTH: 240
};
return {
"idPageNav": idPageNav,
"idMainContainer": idMainContainer,
"setPageNav": function() {
var mainContainerData = {
width: $("." + idMainContainer).width(),
offset: $("." + idMainContainer).offset()
};
if($(window).width() > CONST.DESKTOP_BREAKPOINT) {
$("." + idPageNav).css({
left: mainContainerData.offset.left + mainContainerData.width - CONST.PAGENAV_WIDTH
});
} else {
$("." + idPageNav).css({
left: 0
});
}
},
"bindEvents": function() {
var _self = this;
$(window).resize(function() {
_self.setPageNav();
});
},
"init": function() {
this.bindEvents();
this.setPageNav();
}
}
}
PageNav(
{
"classNamePageNav":"page-nav",
"classNameMainContainer": "container-main-content"
}
).init();
});