commit 44acbae2a03dff01d843a36c1bd7489f881d87de Author: rulingcom Date: Fri Apr 17 17:32:22 2026 +0800 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de5d954 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.bundle/ +log/*.log +pkg/ +test/dummy/db/*.sqlite3 +test/dummy/db/*.sqlite3-journal +test/dummy/log/*.log +test/dummy/tmp/ +test/dummy/.sass-cache diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..d15019e --- /dev/null +++ b/Gemfile @@ -0,0 +1,14 @@ +source "https://rubygems.org" + +# Declare your gem's dependencies in bulletin.gemspec. +# Bundler will treat runtime dependencies like base dependencies, and +# development dependencies will be added by default to the :development group. +gemspec + +# Declare any dependencies that are still in development here instead of in +# your gemspec. These might include edge Rails or gems from your path or +# Git. Remember to move these dependencies to your gemspec before releasing +# your gem to rubygems.org. + +# To use debugger +# gem 'debugger' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..a240dc8 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,106 @@ +PATH + remote: . + specs: + announcement (0.0.1) + mongoid (= 4.0.0.beta1) + rails (~> 4.1.0.rc2) + +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.1.0.rc2) + actionpack (= 4.1.0.rc2) + actionview (= 4.1.0.rc2) + mail (~> 2.5.4) + actionpack (4.1.0.rc2) + actionview (= 4.1.0.rc2) + activesupport (= 4.1.0.rc2) + rack (~> 1.5.2) + rack-test (~> 0.6.2) + actionview (4.1.0.rc2) + activesupport (= 4.1.0.rc2) + builder (~> 3.1) + erubis (~> 2.7.0) + activemodel (4.1.0.rc2) + activesupport (= 4.1.0.rc2) + builder (~> 3.1) + activerecord (4.1.0.rc2) + activemodel (= 4.1.0.rc2) + activesupport (= 4.1.0.rc2) + arel (~> 5.0.0) + activesupport (4.1.0.rc2) + i18n (~> 0.6, >= 0.6.9) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.1) + tzinfo (~> 1.1) + arel (5.0.0) + atomic (1.1.16) + bson (2.2.1) + builder (3.2.2) + connection_pool (2.0.0) + erubis (2.7.0) + hike (1.2.3) + i18n (0.6.9) + json (1.8.1) + mail (2.5.4) + mime-types (~> 1.16) + treetop (~> 1.4.8) + mime-types (1.25.1) + minitest (5.3.1) + mongoid (4.0.0.beta1) + activemodel (>= 4.0.0) + moped (~> 2.0.beta6) + origin (~> 2.1) + tzinfo (>= 0.3.37) + moped (2.0.0.rc1) + bson (~> 2.2) + connection_pool (~> 2.0) + optionable (~> 0.2.0) + multi_json (1.9.2) + optionable (0.2.0) + origin (2.1.1) + polyglot (0.3.4) + rack (1.5.2) + rack-test (0.6.2) + rack (>= 1.0) + rails (4.1.0.rc2) + actionmailer (= 4.1.0.rc2) + actionpack (= 4.1.0.rc2) + actionview (= 4.1.0.rc2) + activemodel (= 4.1.0.rc2) + activerecord (= 4.1.0.rc2) + activesupport (= 4.1.0.rc2) + bundler (>= 1.3.0, < 2.0) + railties (= 4.1.0.rc2) + sprockets-rails (~> 2.0.0) + railties (4.1.0.rc2) + actionpack (= 4.1.0.rc2) + activesupport (= 4.1.0.rc2) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (10.2.2) + sprockets (2.12.0) + hike (~> 1.2) + multi_json (~> 1.0) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + sprockets-rails (2.0.1) + actionpack (>= 3.0) + activesupport (>= 3.0) + sprockets (~> 2.8) + thor (0.19.1) + thread_safe (0.3.1) + atomic (>= 1.1.7, < 2) + tilt (1.4.1) + treetop (1.4.15) + polyglot + polyglot (>= 0.3.1) + tzinfo (1.1.0) + thread_safe (~> 0.1) + +PLATFORMS + ruby + +DEPENDENCIES + announcement! diff --git a/MIT-LICENSE b/MIT-LICENSE new file mode 100644 index 0000000..ea966ec --- /dev/null +++ b/MIT-LICENSE @@ -0,0 +1,20 @@ +Copyright 2014 YOURNAME + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 0000000..acb668e --- /dev/null +++ b/README.rdoc @@ -0,0 +1,3 @@ += Event News + +This project rocks and uses MIT-LICENSE. \ No newline at end of file diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..ccd84f8 --- /dev/null +++ b/Rakefile @@ -0,0 +1,32 @@ +begin + require 'bundler/setup' +rescue LoadError + puts 'You must `gem install bundler` and `bundle install` to run rake tasks' +end + +require 'rdoc/task' + +RDoc::Task.new(:rdoc) do |rdoc| + rdoc.rdoc_dir = 'rdoc' + rdoc.title = 'Announcement' + rdoc.options << '--line-numbers' + rdoc.rdoc_files.include('README.rdoc') + rdoc.rdoc_files.include('lib/**/*.rb') +end + + + + +Bundler::GemHelper.install_tasks + +require 'rake/testtask' + +Rake::TestTask.new(:test) do |t| + t.libs << 'lib' + t.libs << 'test' + t.pattern = 'test/**/*_test.rb' + t.verbose = false +end + + +task default: :test diff --git a/app/assets/images/recruit_news-default.jpg b/app/assets/images/recruit_news-default.jpg new file mode 100644 index 0000000..b6b82f0 Binary files /dev/null and b/app/assets/images/recruit_news-default.jpg differ diff --git a/app/assets/images/recruit_news/.keep b/app/assets/images/recruit_news/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/images/recruit_news/AAAAAA.png b/app/assets/images/recruit_news/AAAAAA.png new file mode 100644 index 0000000..772a39b Binary files /dev/null and b/app/assets/images/recruit_news/AAAAAA.png differ diff --git a/app/assets/javascripts/admin/recruit_news.js b/app/assets/javascripts/admin/recruit_news.js new file mode 100644 index 0000000..dee720f --- /dev/null +++ b/app/assets/javascripts/admin/recruit_news.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/javascripts/form.js b/app/assets/javascripts/form.js new file mode 100644 index 0000000..6be0876 --- /dev/null +++ b/app/assets/javascripts/form.js @@ -0,0 +1,21 @@ +$(document).ready(function() { + var config = {} + config.autoGrow_minHeight = 50; + config.allowedContent = false; + config.disallowedContent = 'img'; + config.toolbar = [ + { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] }, + { name: 'editing', items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] }, + + { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'CopyFormatting', 'RemoveFormat' ] }, + '/', + { name: 'insert', items: [ 'SpecialChar'] }, + { name: 'styles', items: [ 'Font' ] }, + { name: 'colors', items: [ 'TextColor', 'BGColor' ] } + ]; + + var ckeditor_reduce = $('.ckeditor_reduce') + ckeditor_reduce.each(function(i,v){ + CKEDITOR.replace(v,config); + }) +}); \ No newline at end of file diff --git a/app/assets/javascripts/recruit_news/.keep b/app/assets/javascripts/recruit_news/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/javascripts/recruit_news/fullcalendar.min.js b/app/assets/javascripts/recruit_news/fullcalendar.min.js new file mode 100644 index 0000000..c3e0834 --- /dev/null +++ b/app/assets/javascripts/recruit_news/fullcalendar.min.js @@ -0,0 +1,7 @@ +/*! + * FullCalendar v1.6.1 + * Docs & License: http://arshaw.com/fullcalendar/ + * (c) 2013 Adam Shaw + */ +(function(t,e){function n(e){t.extend(!0,ye,e)}function r(n,r,l){function u(t){G?(S(),C(),R(),b(t)):f()}function f(){K=r.theme?"ui":"fc",n.addClass("fc"),r.isRTL?n.addClass("fc-rtl"):n.addClass("fc-ltr"),r.theme&&n.addClass("ui-widget"),G=t("
").prependTo(n),$=new a(Z,r),Q=$.render(),Q&&n.prepend(Q),y(r.defaultView),t(window).resize(x),m()||v()}function v(){setTimeout(function(){!te.start&&m()&&b()},0)}function h(){t(window).unbind("resize",x),$.destroy(),G.remove(),n.removeClass("fc fc-rtl ui-widget")}function g(){return 0!==se.offsetWidth}function m(){return 0!==t("body")[0].offsetWidth}function y(e){if(!te||e!=te.name){ue++,W();var n,r=te;r?((r.beforeHide||I)(),q(G,G.height()),r.element.hide()):q(G,1),G.css("overflow","hidden"),te=ce[e],te?te.element.show():te=ce[e]=new De[e](n=re=t("
").appendTo(G),Z),r&&$.deactivateButton(r.name),$.activateButton(e),b(),G.css("overflow",""),r&&q(G,1),n||(te.afterShow||I)(),ue--}}function b(t){if(g()){ue++,W(),ne===e&&S();var r=!1;!te.start||t||te.start>fe||fe>=te.end?(te.render(fe,t||0),E(!0),r=!0):te.sizeDirty?(te.clearEvents(),E(),r=!0):te.eventsDirty&&(te.clearEvents(),r=!0),te.sizeDirty=!1,te.eventsDirty=!1,T(r),ee=n.outerWidth(),$.updateTitle(te.title);var a=new Date;a>=te.start&&te.end>a?$.disableButton("today"):$.enableButton("today"),ue--,te.trigger("viewDisplay",se)}}function M(){C(),g()&&(S(),E(),W(),te.clearEvents(),te.renderEvents(de),te.sizeDirty=!1)}function C(){t.each(ce,function(t,e){e.sizeDirty=!0})}function S(){ne=r.contentHeight?r.contentHeight:r.height?r.height-(Q?Q.height():0)-L(G):Math.round(G.width()/Math.max(r.aspectRatio,.5))}function E(t){ue++,te.setHeight(ne,t),re&&(re.css("position","relative"),re=null),te.setWidth(G.width(),t),ue--}function x(){if(!ue)if(te.start){var t=++le;setTimeout(function(){t==le&&!ue&&g()&&ee!=(ee=n.outerWidth())&&(ue++,M(),te.trigger("windowResize",se),ue--)},200)}else v()}function T(t){!r.lazyFetching||oe(te.visStart,te.visEnd)?k():t&&F()}function k(){ie(te.visStart,te.visEnd)}function H(t){de=t,F()}function z(t){F(t)}function F(t){R(),g()&&(te.clearEvents(),te.renderEvents(de,t),te.eventsDirty=!1)}function R(){t.each(ce,function(t,e){e.eventsDirty=!0})}function N(t,n,r){te.select(t,n,r===e?!0:r)}function W(){te&&te.unselect()}function A(){b(-1)}function _(){b(1)}function O(){i(fe,-1),b()}function B(){i(fe,1),b()}function Y(){fe=new Date,b()}function j(t,e,n){t instanceof Date?fe=d(t):p(fe,t,e,n),b()}function P(t,n,r){t!==e&&i(fe,t),n!==e&&s(fe,n),r!==e&&c(fe,r),b()}function J(){return d(fe)}function V(){return te}function X(t,n){return n===e?r[t]:(("height"==t||"contentHeight"==t||"aspectRatio"==t)&&(r[t]=n,M()),e)}function U(t,n){return r[t]?r[t].apply(n||se,Array.prototype.slice.call(arguments,2)):e}var Z=this;Z.options=r,Z.render=u,Z.destroy=h,Z.refetchEvents=k,Z.reportEvents=H,Z.reportEventChange=z,Z.rerenderEvents=F,Z.changeView=y,Z.select=N,Z.unselect=W,Z.prev=A,Z.next=_,Z.prevYear=O,Z.nextYear=B,Z.today=Y,Z.gotoDate=j,Z.incrementDate=P,Z.formatDate=function(t,e){return w(t,e,r)},Z.formatDates=function(t,e,n){return D(t,e,n,r)},Z.getDate=J,Z.getView=V,Z.option=X,Z.trigger=U,o.call(Z,r,l);var $,Q,G,K,te,ee,ne,re,ae,oe=Z.isFetchNeeded,ie=Z.fetchEvents,se=n[0],ce={},le=0,ue=0,fe=new Date,de=[];p(fe,r.year,r.month,r.date),r.droppable&&t(document).bind("dragstart",function(e,n){var a=e.target,o=t(a);if(!o.parents(".fc").length){var i=r.dropAccept;(t.isFunction(i)?i.call(a,o):o.is(i))&&(ae=a,te.dragStart(ae,e,n))}}).bind("dragstop",function(t,e){ae&&(te.dragStop(ae,t,e),ae=null)})}function a(n,r){function a(){v=r.theme?"ui":"fc";var n=r.header;return n?h=t("").append(t("").append(i("left")).append(i("center")).append(i("right"))):e}function o(){h.remove()}function i(e){var a=t(""); + switch (position){ + case "first": + var first_line_first_day = new Date(year,month,firstDay.getDate()-firstDay.getDay()) + var first_line_first_date = first_line_first_day.getDate() + var first_line_first_month = first_line_first_day.getMonth() + var first_line_first_year = first_line_first_day.getFullYear() + first_target_day = new Date(first_line_first_year,first_line_first_month,first_line_first_date) + for(var i = 0;i < 7;i++){ + var td = $(""); + if(i >= firstDay.getDay()){ + if(today != 0 && last_inserted_date == today){ + td.addClass("w-calendar-today"); + } + td.find('div').html(last_inserted_date<10 ? " "+last_inserted_date+" " : last_inserted_date); + td.attr("data-date-node",last_inserted_date+"-"+firstDay.getMonth()+"-"+firstDay.getFullYear()); + last_inserted_date++; + }else{ + td.find('div').text(first_line_first_date+i) + td.attr("data-date-node",(first_line_first_date+i)+"-"+first_line_first_month+"-"+first_line_first_year); + td.addClass("w-calendar-other-month") + } + row.append(td); + } + break; + case "middle": + for(var i = 0;i < 7;i++){ + var td = $(""); + if(today != 0 && last_inserted_date == today){ + td.attr("class","w-calendar-today"); + } + td.find('div').html(last_inserted_date<10 ? " "+last_inserted_date+" " : last_inserted_date); + td.attr("data-date-node",last_inserted_date+"-"+firstDay.getMonth()+"-"+firstDay.getFullYear()); + last_inserted_date++; + row.append(td); + } + break; + case "last": + var next_month = month+1, + next_year = year; + if (next_month==12){ + next_month = 0; + next_year = next_year + 1; + } + last_target_day = new Date(next_year,next_month,6-lastDay.getDay()) + for(var i = 0;i < 7;i++){ + var td = $(""); + if(i <= lastDay.getDay()){ + if(today != 0 && last_inserted_date == today){ + td.attr("class","w-calendar-today"); + } + td.find('div').html(last_inserted_date<10 ? " "+last_inserted_date+" " : last_inserted_date); + td.attr("data-date-node",last_inserted_date+"-"+firstDay.getMonth()+"-"+firstDay.getFullYear()); + last_inserted_date++; + }else{ + td.find('div').text(i-lastDay.getDay()) + td.attr("data-date-node",(i-lastDay.getDay())+"-"+next_month+"-"+next_year); + td.addClass("w-calendar-other-month") + } + row.append(td); + } + break; + } + }else{ + var row = null; + } + return row; + } + function toggle_event(ele,type){ + $(ele).parents('.month_template').find('td').removeClass('w-calendar-toggle') + var toggle_month + if ($(ele).length==1){ + $(ele).addClass('w-calendar-toggle') + toggle_data = $(ele).data('date-node') + toggle_month = $(ele).data('date-node').split('-')[1] + } + if (toggle_month==month || $(ele).length!=1){ + if (type=='show'){ + show_event($(ele).data('date-node'),ele) + }else{ + hide_event(ele) + } + } + else if(toggle_month==month+1 || toggle_month==0){ + nextMonthFunc(toggle_data) + }else{ + prevMonthFunc(toggle_data) + } + } + var fetchEvents = function(){ + var usd = Math.round(firstDay/1000), + usd_target = Math.round(first_target_day/1000), + ued_target = Math.round(last_target_day/1000); + $.ajax({ + url : "/xhr/recruit_news/agenda", + data : {"month_start" : usd,"unix_start" : usd_target, "unix_end" : ued_target, "subpart_id" : subpartid, "locale" : $('html').attr('lang')}, + dataType : "json", + type : "get" + }).done(function(data){ + events = {} + $(dom).find('.w-calendar-title span').eq(0).html(data['calendar_title']) + $.each(data.events,function(index,eve){ + var sd = new Date(eve.start), + ed = new Date(eve.end), + sd_date = new Date(formate_datetime(eve.start)[0]), + ed_date = new Date(formate_datetime(eve.end)[0]), + timeDiff = ed_date.getTime() - sd_date.getTime(), + dayDiff = Math.round(timeDiff / (1000 * 3600 * 24)); + if(eve.allDay && dayDiff < 1){ + dayDiff = 1 + } + if(dayDiff > 0){ + var inserting_date = sd.getDate(); + for(var i = 0;i < dayDiff; i++){ + var dt = inserting_date + "-" + sd.getMonth() + "-" + sd.getFullYear(), + td = dom.find("td[data-date-node=" + dt + "]"); + if (events[dt]==undefined){ + events[dt]=[] + } + events[dt].push(eve) + td.addClass("w-calendar-event"); + if(events[dt] && events[dt].length==1){ + td.click(function(){ + toggle_event(this,'show') + }) + } + inserting_date++; + if(inserting_date > lastDay.getDate() || (ed.getMonth() == month && inserting_date > ed.getDate())){ + break; + } + } + }else{ + var dt = sd.getDate() + "-" + sd.getMonth() + "-" + sd.getFullYear(); + td = dom.find("td[data-date-node=" + dt + "]"); + if (events[dt]==undefined){ + events[dt]=[] + } + events[dt].push(eve) + if(events[dt] && events[dt].length==1){ + td.click(function(){ + toggle_event(this,'show') + }) + } + td.addClass("w-calendar-event"); + } + }) + if (!toggle_data){ + if (dom.find('td.w-calendar-today').length != 0){ + toggle_event(dom.find('td.w-calendar-today'),'show') + }else{ + toggle_event(dom.find('td'),'hide') + } + } + dom.find('td:not(td.w-calendar-event)').click(function(){ + toggle_event(this,'hide') + }) + var clicked_color = dom.find('.w-calendar-event').css('background-color') + if (clicked_color){ + var hex_color = rgb2hex(clicked_color) + if (hex_color != '#000000'){ + clicked_color = lighten_color(hex_color,-45) + dom.find('table').append($('')) + } + } + monthDom.find("i.loading").addClass("hide"); + }) + } + + this.currentMonth = function(){ + renderMonth(); + var div_tag = $('
') + var widge_title = dom.find('.w-calendar-title').eq(0) + div_tag.html(monthDom) + div_tag.prepend(widge_title) + dom.html(div_tag); + monthDom.find("i.loading").removeClass("hide"); + fetchInterval = setTimeout(fetchEvents,300); + dom.find('div').eq(0).after(eventHTML) + } + + this.nextMonth = function(toggle_flag){ + clearTimeout(fetchInterval); + monthDom.find("i.loading").removeClass("hide"); + month++; + if(month == 12){ + year++; + month = 0; + } + firstDay = new Date(Date.UTC(year,month,1)); + lastDay =new Date(Date.UTC(year,month+1,0)); + today = (initialDate.getMonth() == month && initialDate.getFullYear() == year ? initialDate.getDate() : 0); + last_inserted_date = 1; + var toggle_type,ele; + if (toggle_data && toggle_flag){ + ele = dom.find('td[data-date-node="'+toggle_data+'"]') + toggle_type = (ele.hasClass('w-calendar-event') ? 'show' : 'hide') + }else{ + toggle_data = undefined + } + renderMonth(); + dom.find("table.w-calendar-table tbody").html(monthDom.find("tbody").html()); + if (ele){ + ele = dom.find('td[data-date-node="'+toggle_data+'"]') + toggle_event(ele,toggle_type) + } + fetchInterval = setTimeout(fetchEvents,300); + } + nextMonthFunc = this.nextMonth; + this.prevMonth = function(toggle_flag){ + clearTimeout(fetchInterval); + monthDom.find("i.loading").removeClass("hide"); + month--; + if(month == -1){ + year--; + month = 11; + } + firstDay = new Date(Date.UTC(year,month,1)); + lastDay = new Date(Date.UTC(year,month+1,0)); + today = (initialDate.getMonth() == month && initialDate.getFullYear() == year ? initialDate.getDate() : 0); + last_inserted_date = 1; + var toggle_type,ele; + if (toggle_data && toggle_flag){ + ele = dom.find('td[data-date-node="'+toggle_data+'"]') + toggle_type = (ele.hasClass('w-calendar-event') ? 'show' : 'hide') + }else{ + toggle_data = undefined + } + renderMonth(); + dom.find("table.w-calendar-table tbody").html(monthDom.find("tbody").html()); + if (ele){ + ele = dom.find('td[data-date-node="'+toggle_data+'"]') + toggle_event(ele,toggle_type) + } + fetchInterval = setTimeout(fetchEvents,300); + } + prevMonthFunc = this.prevMonth; +} \ No newline at end of file diff --git a/app/assets/stylesheets/admin/recruit_news.css b/app/assets/stylesheets/admin/recruit_news.css new file mode 100644 index 0000000..1862e37 --- /dev/null +++ b/app/assets/stylesheets/admin/recruit_news.css @@ -0,0 +1,7 @@ +/* + Place all the styles related to the matching controller here. + They will automatically be included in application.css. +*/ +.table .expired{ + color: #BE2E2E; +} diff --git a/app/assets/stylesheets/recruit_news/.keep b/app/assets/stylesheets/recruit_news/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/stylesheets/recruit_news/bootstrap/_mixins.scss b/app/assets/stylesheets/recruit_news/bootstrap/_mixins.scss new file mode 100644 index 0000000..74ccf9f --- /dev/null +++ b/app/assets/stylesheets/recruit_news/bootstrap/_mixins.scss @@ -0,0 +1,947 @@ +// +// Mixins +// -------------------------------------------------- + + +// Utilities +// ------------------------- + +// Clearfix +// Source: http://nicolasgallagher.com/micro-clearfix-hack/ +// +// For modern browsers +// 1. The space content is one way to avoid an Opera bug when the +// contenteditable attribute is included anywhere else in the document. +// Otherwise it causes space to appear at the top and bottom of elements +// that are clearfixed. +// 2. The use of `table` rather than `block` is only necessary if using +// `:before` to contain the top-margins of child elements. +@mixin clearfix() { + &:before, + &:after { + content: " "; // 1 + display: table; // 2 + } + &:after { + clear: both; + } +} + +// WebKit-style focus +@mixin tab-focus() { + // Default + outline: thin dotted; + // WebKit + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +// Center-align a block level element +@mixin center-block() { + display: block; + margin-left: auto; + margin-right: auto; +} + +// Sizing shortcuts +@mixin size($width, $height) { + width: $width; + height: $height; +} +@mixin square($size) { + @include size($size, $size); +} + +// Placeholder text +@mixin placeholder($color: $input-color-placeholder) { + &::-moz-placeholder { color: $color; // Firefox + opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526 + &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+ + &::-webkit-input-placeholder { color: $color; } // Safari and Chrome +} + +// Text overflow +// Requires inline-block or block for proper styling +@mixin text-overflow() { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +// CSS image replacement +// +// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for +// mixins being reused as classes with the same name, this doesn't hold up. As +// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note +// that we cannot chain the mixins together in Less, so they are repeated. +// +// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 + +// Deprecated as of v3.0.1 (will be removed in v4) +@mixin hide-text() { + font: #{0/0} a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +// New mixin to use as of v3.0.1 +@mixin text-hide() { + @include hide-text(); +} + + + +// CSS3 PROPERTIES +// -------------------------------------------------- + +// Single side border-radius +@mixin border-top-radius($radius) { + border-top-right-radius: $radius; + border-top-left-radius: $radius; +} +@mixin border-right-radius($radius) { + border-bottom-right-radius: $radius; + border-top-right-radius: $radius; +} +@mixin border-bottom-radius($radius) { + border-bottom-right-radius: $radius; + border-bottom-left-radius: $radius; +} +@mixin border-left-radius($radius) { + border-bottom-left-radius: $radius; + border-top-left-radius: $radius; +} + +// Drop shadows +// +// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's +// supported browsers that have box shadow capabilities now support the +// standard `box-shadow` property. +@mixin box-shadow($shadow...) { + -webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1 + box-shadow: $shadow; +} + +// Transitions +@mixin transition($transition...) { + -webkit-transition: $transition; + transition: $transition; +} +@mixin transition-property($transition-property...) { + -webkit-transition-property: $transition-property; + transition-property: $transition-property; +} +@mixin transition-delay($transition-delay) { + -webkit-transition-delay: $transition-delay; + transition-delay: $transition-delay; +} +@mixin transition-duration($transition-duration...) { + -webkit-transition-duration: $transition-duration; + transition-duration: $transition-duration; +} +@mixin transition-transform($transition...) { + -webkit-transition: -webkit-transform $transition; + -moz-transition: -moz-transform $transition; + -o-transition: -o-transform $transition; + transition: transform $transition; +} + +// Transformations +@mixin rotate($degrees) { + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); // IE9 only + transform: rotate($degrees); +} +@mixin scale($scale-args...) { + -webkit-transform: scale($scale-args); + -ms-transform: scale($scale-args); // IE9 only + transform: scale($scale-args); +} +@mixin translate($x, $y) { + -webkit-transform: translate($x, $y); + -ms-transform: translate($x, $y); // IE9 only + transform: translate($x, $y); +} +@mixin skew($x, $y) { + -webkit-transform: skew($x, $y); + -ms-transform: skewX($x) skewY($y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+ + transform: skew($x, $y); +} +@mixin translate3d($x, $y, $z) { + -webkit-transform: translate3d($x, $y, $z); + transform: translate3d($x, $y, $z); +} + +@mixin rotateX($degrees) { + -webkit-transform: rotateX($degrees); + -ms-transform: rotateX($degrees); // IE9 only + transform: rotateX($degrees); +} +@mixin rotateY($degrees) { + -webkit-transform: rotateY($degrees); + -ms-transform: rotateY($degrees); // IE9 only + transform: rotateY($degrees); +} +@mixin perspective($perspective) { + -webkit-perspective: $perspective; + -moz-perspective: $perspective; + perspective: $perspective; +} +@mixin perspective-origin($perspective) { + -webkit-perspective-origin: $perspective; + -moz-perspective-origin: $perspective; + perspective-origin: $perspective; +} +@mixin transform-origin($origin) { + -webkit-transform-origin: $origin; + -moz-transform-origin: $origin; + -ms-transform-origin: $origin; // IE9 only + transform-origin: $origin; +} + +// Animations +@mixin animation($animation) { + -webkit-animation: $animation; + animation: $animation; +} +@mixin animation-name($name) { + -webkit-animation-name: $name; + animation-name: $name; +} +@mixin animation-duration($duration) { + -webkit-animation-duration: $duration; + animation-duration: $duration; +} +@mixin animation-timing-function($timing-function) { + -webkit-animation-timing-function: $timing-function; + animation-timing-function: $timing-function; +} +@mixin animation-delay($delay) { + -webkit-animation-delay: $delay; + animation-delay: $delay; +} +@mixin animation-iteration-count($iteration-count) { + -webkit-animation-iteration-count: $iteration-count; + animation-iteration-count: $iteration-count; +} +@mixin animation-direction($direction) { + -webkit-animation-direction: $direction; + animation-direction: $direction; +} + +// Backface visibility +// Prevent browsers from flickering when using CSS 3D transforms. +// Default value is `visible`, but can be changed to `hidden` +@mixin backface-visibility($visibility){ + -webkit-backface-visibility: $visibility; + -moz-backface-visibility: $visibility; + backface-visibility: $visibility; +} + +// Box sizing +@mixin box-sizing($boxmodel) { + -webkit-box-sizing: $boxmodel; + -moz-box-sizing: $boxmodel; + box-sizing: $boxmodel; +} + +// User select +// For selecting text on the page +@mixin user-select($select) { + -webkit-user-select: $select; + -moz-user-select: $select; + -ms-user-select: $select; // IE10+ + user-select: $select; +} + +// Resize anything +@mixin resizable($direction) { + resize: $direction; // Options: horizontal, vertical, both + overflow: auto; // Safari fix +} + +// CSS3 Content Columns +@mixin content-columns($column-count, $column-gap: $grid-gutter-width) { + -webkit-column-count: $column-count; + -moz-column-count: $column-count; + column-count: $column-count; + -webkit-column-gap: $column-gap; + -moz-column-gap: $column-gap; + column-gap: $column-gap; +} + +// Optional hyphenation +@mixin hyphens($mode: auto) { + word-wrap: break-word; + -webkit-hyphens: $mode; + -moz-hyphens: $mode; + -ms-hyphens: $mode; // IE10+ + -o-hyphens: $mode; + hyphens: $mode; +} + +// Opacity +@mixin opacity($opacity) { + opacity: $opacity; + // IE8 filter + $opacity-ie: ($opacity * 100); + filter: #{alpha(opacity=$opacity-ie)}; +} + + + +// GRADIENTS +// -------------------------------------------------- + + + +// Horizontal gradient, from left to right +// +// Creates two color stops, start and end, by specifying a color and position for each color stop. +// Color stops are not available in IE9 and below. +@mixin gradient-horizontal($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { + background-image: -webkit-linear-gradient(left, color-stop($start-color $start-percent), color-stop($end-color $end-percent)); // Safari 5.1-6, Chrome 10+ + background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down +} + +// Vertical gradient, from top to bottom +// +// Creates two color stops, start and end, by specifying a color and position for each color stop. +// Color stops are not available in IE9 and below. +@mixin gradient-vertical($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { + background-image: -webkit-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+ + background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down +} + +@mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) { + background-repeat: repeat-x; + background-image: -webkit-linear-gradient($deg, $start-color, $end-color); // Safari 5.1-6, Chrome 10+ + background-image: linear-gradient($deg, $start-color, $end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ +} +@mixin gradient-horizontal-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) { + background-image: -webkit-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color); + background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down, gets no color-stop at all for proper fallback +} +@mixin gradient-vertical-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) { + background-image: -webkit-linear-gradient($start-color, $mid-color $color-stop, $end-color); + background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down, gets no color-stop at all for proper fallback +} +@mixin gradient-radial($inner-color: #555, $outer-color: #333) { + background-image: -webkit-radial-gradient(circle, $inner-color, $outer-color); + background-image: radial-gradient(circle, $inner-color, $outer-color); + background-repeat: no-repeat; +} +@mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) { + background-image: -webkit-linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); + background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); +} + +// Reset filters for IE +// +// When you need to remove a gradient background, do not forget to use this to reset +// the IE filter for IE9 and below. +@mixin reset-filter() { + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} + + + +// Retina images +// +// Short retina mixin for setting background-image and -size + +@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { + background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-1x}"), "#{$file-1x}")); + + @media + only screen and (-webkit-min-device-pixel-ratio: 2), + only screen and ( min--moz-device-pixel-ratio: 2), + only screen and ( -o-min-device-pixel-ratio: 2/1), + only screen and ( min-device-pixel-ratio: 2), + only screen and ( min-resolution: 192dpi), + only screen and ( min-resolution: 2dppx) { + background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-2x}"), "#{$file-2x}")); + background-size: $width-1x $height-1x; + } +} + + +// Responsive image +// +// Keep images from scaling beyond the width of their parents. + +@mixin img-responsive($display: block) { + display: $display; + max-width: 100%; // Part 1: Set a maximum relative to the parent + height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching +} + + +// COMPONENT MIXINS +// -------------------------------------------------- + +// Horizontal dividers +// ------------------------- +// Dividers (basically an hr) within dropdowns and nav lists +@mixin nav-divider($color: #e5e5e5) { + height: 1px; + margin: (($line-height-computed / 2) - 1) 0; + overflow: hidden; + background-color: $color; +} + +// Panels +// ------------------------- +@mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { + border-color: $border; + + & > .panel-heading { + color: $heading-text-color; + background-color: $heading-bg-color; + border-color: $heading-border; + + + .panel-collapse .panel-body { + border-top-color: $border; + } + } + & > .panel-footer { + + .panel-collapse .panel-body { + border-bottom-color: $border; + } + } +} + +// Alerts +// ------------------------- +@mixin alert-variant($background, $border, $text-color) { + background-color: $background; + border-color: $border; + color: $text-color; + + hr { + border-top-color: darken($border, 5%); + } + .alert-link { + color: darken($text-color, 10%); + } +} + +// Tables +// ------------------------- +@mixin table-row-variant($state, $background) { + // Exact selectors below required to override `.table-striped` and prevent + // inheritance to nested tables. + .table > thead > tr, + .table > tbody > tr, + .table > tfoot > tr { + > td.#{$state}, + > th.#{$state}, + &.#{$state} > td, + &.#{$state} > th { + background-color: $background; + } + } + + // Hover states for `.table-hover` + // Note: this is not available for cells or rows within `thead` or `tfoot`. + .table-hover > tbody > tr { + > td.#{$state}:hover, + > th.#{$state}:hover, + &.#{$state}:hover > td, + &.#{$state}:hover > th { + background-color: darken($background, 5%); + } + } +} + +// List Groups +// ------------------------- +@mixin list-group-item-variant($state, $background, $color) { + .list-group-item-#{$state} { + color: $color; + background-color: $background; + + // [converter] extracted a& to a.list-group-item-#{$state} + } + + a.list-group-item-#{$state} { + color: $color; + + .list-group-item-heading { color: inherit; } + + &:hover, + &:focus { + color: $color; + background-color: darken($background, 5%); + } + &.active, + &.active:hover, + &.active:focus { + color: #fff; + background-color: $color; + border-color: $color; + } + } +} + +// Button variants +// ------------------------- +// Easily pump out default styles, as well as :hover, :focus, :active, +// and disabled options for all buttons +@mixin button-variant($color, $background, $border) { + color: $color; + background-color: $background; + border-color: $border; + + &:hover, + &:focus, + &:active, + &.active { + color: $color; + background-color: darken($background, 8%); + border-color: darken($border, 12%); + } + .open & { &.dropdown-toggle { + color: $color; + background-color: darken($background, 8%); + border-color: darken($border, 12%); + } } + &:active, + &.active { + background-image: none; + } + .open & { &.dropdown-toggle { + background-image: none; + } } + &.disabled, + &[disabled], + fieldset[disabled] & { + &, + &:hover, + &:focus, + &:active, + &.active { + background-color: $background; + border-color: $border; + } + } + + .badge { + color: $background; + background-color: $color; + } +} + +// Button sizes +// ------------------------- +@mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { + padding: $padding-vertical $padding-horizontal; + font-size: $font-size; + line-height: $line-height; + border-radius: $border-radius; +} + +// Pagination +// ------------------------- +@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $border-radius) { + > li { + > a, + > span { + padding: $padding-vertical $padding-horizontal; + font-size: $font-size; + } + &:first-child { + > a, + > span { + @include border-left-radius($border-radius); + } + } + &:last-child { + > a, + > span { + @include border-right-radius($border-radius); + } + } + } +} + +// Labels +// ------------------------- +@mixin label-variant($color) { + background-color: $color; + &[href] { + &:hover, + &:focus { + background-color: darken($color, 10%); + } + } +} + +// Contextual backgrounds +// ------------------------- +// [converter] $parent hack +@mixin bg-variant($parent, $color) { + #{$parent} { + background-color: $color; + } + a#{$parent}:hover { + background-color: darken($color, 10%); + } +} + +// Typography +// ------------------------- +// [converter] $parent hack +@mixin text-emphasis-variant($parent, $color) { + #{$parent} { + color: $color; + } + a#{$parent}:hover { + color: darken($color, 10%); + } +} + +// Navbar vertical align +// ------------------------- +// Vertically center elements in the navbar. +// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. +@mixin navbar-vertical-align($element-height) { + margin-top: (($navbar-height - $element-height) / 2); + margin-bottom: (($navbar-height - $element-height) / 2); +} + +// Progress bars +// ------------------------- +@mixin progress-bar-variant($color) { + background-color: $color; + .progress-striped & { + @include gradient-striped(); + } +} + +// Responsive utilities +// ------------------------- +// More easily include all the states for responsive-utilities.less. +// [converter] $parent hack +@mixin responsive-visibility($parent) { + #{$parent} { + display: block !important; + } + table#{$parent} { display: table; } + tr#{$parent} { display: table-row !important; } + th#{$parent}, + td#{$parent} { display: table-cell !important; } +} + +// [converter] $parent hack +@mixin responsive-invisibility($parent) { + #{$parent} { + display: none !important; + } +} + + +// Grid System +// ----------- + +// Centered container element +@mixin container-fixed() { + margin-right: auto; + margin-left: auto; + padding-left: ($grid-gutter-width / 2); + padding-right: ($grid-gutter-width / 2); + @include clearfix(); +} + +// Creates a wrapper for a series of columns +@mixin make-row($gutter: $grid-gutter-width) { + margin-left: ($gutter / -2); + margin-right: ($gutter / -2); + @include clearfix(); +} + +// Generate the extra small columns +@mixin make-xs-column($columns, $gutter: $grid-gutter-width) { + position: relative; + float: left; + width: percentage(($columns / $grid-columns)); + min-height: 1px; + padding-left: ($gutter / 2); + padding-right: ($gutter / 2); +} +@mixin make-xs-column-offset($columns) { + @media (min-width: $screen-xs-min) { + margin-left: percentage(($columns / $grid-columns)); + } +} +@mixin make-xs-column-push($columns) { + @media (min-width: $screen-xs-min) { + left: percentage(($columns / $grid-columns)); + } +} +@mixin make-xs-column-pull($columns) { + @media (min-width: $screen-xs-min) { + right: percentage(($columns / $grid-columns)); + } +} + + +// Generate the small columns +@mixin make-sm-column($columns, $gutter: $grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: ($gutter / 2); + padding-right: ($gutter / 2); + + @media (min-width: $screen-sm-min) { + float: left; + width: percentage(($columns / $grid-columns)); + } +} +@mixin make-sm-column-offset($columns) { + @media (min-width: $screen-sm-min) { + margin-left: percentage(($columns / $grid-columns)); + } +} +@mixin make-sm-column-push($columns) { + @media (min-width: $screen-sm-min) { + left: percentage(($columns / $grid-columns)); + } +} +@mixin make-sm-column-pull($columns) { + @media (min-width: $screen-sm-min) { + right: percentage(($columns / $grid-columns)); + } +} + + +// Generate the medium columns +@mixin make-md-column($columns, $gutter: $grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: ($gutter / 2); + padding-right: ($gutter / 2); + + @media (min-width: $screen-md-min) { + float: left; + width: percentage(($columns / $grid-columns)); + } +} +@mixin make-md-column-offset($columns) { + @media (min-width: $screen-md-min) { + margin-left: percentage(($columns / $grid-columns)); + } +} +@mixin make-md-column-push($columns) { + @media (min-width: $screen-md-min) { + left: percentage(($columns / $grid-columns)); + } +} +@mixin make-md-column-pull($columns) { + @media (min-width: $screen-md-min) { + right: percentage(($columns / $grid-columns)); + } +} + + +// Generate the large columns +@mixin make-lg-column($columns, $gutter: $grid-gutter-width) { + position: relative; + min-height: 1px; + padding-left: ($gutter / 2); + padding-right: ($gutter / 2); + + @media (min-width: $screen-lg-min) { + float: left; + width: percentage(($columns / $grid-columns)); + } +} +@mixin make-lg-column-offset($columns) { + @media (min-width: $screen-lg-min) { + margin-left: percentage(($columns / $grid-columns)); + } +} +@mixin make-lg-column-push($columns) { + @media (min-width: $screen-lg-min) { + left: percentage(($columns / $grid-columns)); + } +} +@mixin make-lg-column-pull($columns) { + @media (min-width: $screen-lg-min) { + right: percentage(($columns / $grid-columns)); + } +} + + +// Framework grid generation +// +// Used only by Bootstrap to generate the correct number of grid classes given +// any value of `$grid-columns`. + +// [converter] This is defined recursively in LESS, but Sass supports real loops +@mixin make-grid-columns() { + $list: ''; + $i: 1; + $list: ".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"; + @for $i from (1 + 1) through $grid-columns { + $list: "#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"; + } + #{$list} { + position: relative; + // Prevent columns from collapsing when empty + min-height: 1px; + // Inner gutter via padding + padding-left: ($grid-gutter-width / 2); + padding-right: ($grid-gutter-width / 2); + } +} + + +// [converter] This is defined recursively in LESS, but Sass supports real loops +@mixin float-grid-columns($class) { + $list: ''; + $i: 1; + $list: ".col-#{$class}-#{$i}"; + @for $i from (1 + 1) through $grid-columns { + $list: "#{$list}, .col-#{$class}-#{$i}"; + } + #{$list} { + float: left; + } +} + + +@mixin calc-grid-column($index, $class, $type) { + @if ($type == width) and ($index > 0) { + .col-#{$class}-#{$index} { + width: percentage(($index / $grid-columns)); + } + } + @if ($type == push) { + .col-#{$class}-push-#{$index} { + left: percentage(($index / $grid-columns)); + } + } + @if ($type == pull) { + .col-#{$class}-pull-#{$index} { + right: percentage(($index / $grid-columns)); + } + } + @if ($type == offset) { + .col-#{$class}-offset-#{$index} { + margin-left: percentage(($index / $grid-columns)); + } + } +} + +// [converter] This is defined recursively in LESS, but Sass supports real loops +@mixin loop-grid-columns($columns, $class, $type) { + @for $i from 0 through $columns { + @include calc-grid-column($i, $class, $type); + } +} + + +// Create grid for specific class +@mixin make-grid($class) { + @include float-grid-columns($class); + @include loop-grid-columns($grid-columns, $class, width); + @include loop-grid-columns($grid-columns, $class, pull); + @include loop-grid-columns($grid-columns, $class, push); + @include loop-grid-columns($grid-columns, $class, offset); +} + +// Form validation states +// +// Used in forms.less to generate the form validation CSS for warnings, errors, +// and successes. + +@mixin form-control-validation($text-color: #555, $border-color: #ccc, $background-color: #f5f5f5) { + // Color the label and help text + .help-block, + .control-label, + .radio, + .checkbox, + .radio-inline, + .checkbox-inline { + color: $text-color; + } + // Set the border and box shadow on specific inputs to match + .form-control { + border-color: $border-color; + @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work + &:focus { + border-color: darken($border-color, 10%); + $shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($border-color, 20%); + @include box-shadow($shadow); + } + } + // Set validation states also for addons + .input-group-addon { + color: $text-color; + border-color: $border-color; + background-color: $background-color; + } + // Optional feedback icon + .form-control-feedback { + color: $text-color; + } +} + +// Form control focus state +// +// Generate a customized focus state and for any input with the specified color, +// which defaults to the `$input-focus-border` variable. +// +// We highly encourage you to not customize the default value, but instead use +// this to tweak colors on an as-needed basis. This aesthetic change is based on +// WebKit's default styles, but applicable to a wider range of browsers. Its +// usability and accessibility should be taken into account with any change. +// +// Example usage: change the default blue border and shadow to white for better +// contrast against a dark gray background. + +@mixin form-control-focus($color: $input-border-focus) { + $color-rgba: rgba(red($color), green($color), blue($color), .6); + &:focus { + border-color: $color; + outline: 0; + @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba); + } +} + +// Form control sizing +// +// Relative text size, padding, and border-radii changes for form controls. For +// horizontal sizing, wrap controls in the predefined grid classes. `".html_safe + end + + def page_for_recruit_news(recruit_news) + ann_page = nil + pages = Page.where(:module=>'recruit_news_mod') + + pages.each do |page| + if page.categories.count ==1 + if page.categories.include?(recruit_news.category.id.to_s) + ann_page = page + end + end + break if !ann_page.nil? + end + + if ann_page.nil? + pages.each do |page| + if page.categories.include?(recruit_news.category.id.to_s) + ann_page = page + end + break if !ann_page.nil? + end + end + + ann_page = pages.first if ann_page.nil? + request.protocol+(request.host_with_port+ann_page.url+'/'+recruit_news.to_param).gsub('//','/') rescue "/" + end + + def import_this_recruit_news(row,categories,tags) + value = {} + anns = RecruitNews.new + row.cells.each_with_index do |cell,index| + val = cell.nil? ? nil : cell.value + next if val.nil? || val == "" + case index + when 0 + anns.category = categories[val.to_i] + when 1 + new_tags = [] + if (val.include?(",") rescue false) + ts = val.split(",") + ts.each do |t| + new_tags << tags[t.to_i] + end + else + new_tags << tags[val.to_i] + end + anns.tags=new_tags + when 2 + anns.event_date = val + when 3 + anns.postdate = val + when 4 + anns.deadline = val + when 5 + anns.is_top = (val.to_i == 1 ? true : false) + when 6 + anns.is_hot = (val.to_i == 1 ? true : false) + when 7 + anns.is_hidden = (val.to_i == 1 ? true : false) + when 8 + anns.remote_image_url = val + when 9 + value["en"] = val + anns.image_description_translations = value.clone + when 10 + value["zh_tw"] = val + anns.image_description_translations = value.clone + value = {} + when 11 + value["en"] = val + anns.title_translations = value.clone + when 12 + value["zh_tw"] = val + anns.title_translations = value.clone + value = {} + when 13 + value["en"] = val + anns.speaker_translations = value.clone + when 14 + value["zh_tw"] = val + anns.speaker_translations = value.clone + value = {} + when 15 + value["en"] = val + anns.host_translations = value.clone + when 16 + value["zh_tw"] = val + anns.host_translations = value.clone + value = {} + when 17 + value["en"] = val + anns.subtitle_translations = value.clone + when 18 + value["zh_tw"] = val + anns.subtitle_translations = value.clone + value = {} + when 19 + value["en"] = val + anns.text_translations = value.clone + when 20 + value["zh_tw"] = val + anns.text_translations = value.clone + value = {} + when 21 + value["en"] = val + anns.notes_translations = value.clone + when 22 + value["zh_tw"] = val + anns.notes_translations = value.clone + value = {} + when 23 + links = val.split(";") rescue [] + desc_en = row.cells[24].value.split(";") rescue [] + desc_zh_tw = row.cells[25].value.split(";") rescue [] + links.each_with_index do |link,i| + bl = RecruitNewsLink.new + bl.url = link.strip + bl.title_translations = {"en" => desc_en[i], "zh_tw" => desc_zh_tw[i]} + bl.recruit_news_id = anns.id + bl.save + end + when 26 + files = val.split(";") rescue [] + desc_en = row.cells[27].value.split(";") rescue [] + desc_zh_tw = row.cells[28].value.split(";") rescue [] + alt_en = row.cells[29].value.split(";") rescue [] + alt_zh_tw = row.cells[30].value.split(";") rescue [] + files.each_with_index do |file, i| + bf = RecruitNewsFile.new + bf.remote_file_url = file.strip rescue nil + bf.title_translations = {"en" => (alt_en[i] rescue ""), "zh_tw" => (alt_zh_tw[i] rescue "")} + bf.description_translations = {"en" => (desc_en[i] rescue ""), "zh_tw" => (desc_zh_tw[i] rescue "")} + bf.recruit_news_id = anns.id + bf.save + end + when 31 + value["en"] = val + anns.place_translations = value.clone + when 32 + value["zh_tw"] = val + anns.place_translations = value.clone + value = {} + when 33 + anns.event_end_date = val + when 34 + carousel_images = val.split(";") rescue [] + desc_en = row.cells[35].value.split(";") rescue [] + desc_zh_tw = row.cells[36].value.split(";") rescue [] + carousel_images.each_with_index do |image, i| + bc = EventCarouselImage.new + bc.remote_file_url = image.strip rescue nil + bc.description_translations = {"en" => (desc_en[i] rescue ""), "zh_tw" => (desc_zh_tw[i] rescue "")} + bc.recruit_news_id = anns.id + bc.save + end + end + end + anns.create_user_id = current_user.id.to_s + anns.update_user_id = current_user.id.to_s + anns.approved = true + anns.save + end + + def send_rejection_email(recruit_news,locale) + user = User.find(recruit_news.create_user_id) rescue nil + if !user.nil? + email = user.member_profile.email + if !email.nil? && email != "" + url = "http://#{request.host_with_port}/admin/recruit_news/#{recruit_news.id}/edit" + datatosend = "

Hello #{user.name},

#{current_user.name} #{t("recruit_news.rejected_recruit_news")} : #{recruit_news.rejection_reason} #{t("recruit_news.click_here_to_see")}

" + mail = Email.new(:mail_to => email, :mail_subject => "RecruitNews rejected公告未通過 : #{recruit_news.title_translations[locale]}.", :template => "email/recruit_news_email.html.erb", :template_data => {"html" => datatosend}) + mail.save + mail.deliver rescue nil + end + end + end + + def send_notification_mail_to_managers(recruit_news, type, locale) + users = [] + if @recruit_news_setting.email_to.include?("managers") + authorizations = Authorization.where(:module_app_id => @module_app.id) + users = authorizations.collect do |auth| + auth.user + end + end + if @recruit_news_setting.email_to.include?("admins") + wg = Workgroup.where(:key => "admin").first + admins = User.where(:workgroup_id => wg.id) + users.delete(nil) + users = users.concat(admins.to_a) + end + if @recruit_news_setting.email_to.include?("approvers") + approvers = User.find(@recruit_news_setting.approvers).to_a rescue [] + auths = Authorization.where(:category_id => recruit_news.category_id).collect{|a| a.user} + users = users.concat(approvers & auths) + end + users.each do |user| + email = user.member_profile.email + if !email.nil? && email != "" + send_email(user.name, email, recruit_news, type, locale) + # sleep(1) + end + end + end + + def send_email(name, useremail, recruit_news, type, locale) + url = "http://#{request.host_with_port}/admin/recruit_news?url=#{page_for_recruit_news(recruit_news).sub("http://" + request.host_with_port, "")}&id=#{recruit_news.id}" + + case type + when "approval" + datatosend = "

#{t("recruit_news.approval_mail_hi", :name => name)},

#{t("recruit_news.submitted_new_recruit_news", :poster => current_user.name)}

#{t("recruit_news.approval_recruit_news_title")} : #{recruit_news.title_translations[locale]}
#{t("recruit_news.click_here_to_see")} : #{url}

" + when "reapproval" + datatosend = "

#{t("recruit_news.approval_mail_hi", :name => name)},

#{t("recruit_news.updated_recruit_news", :poster => current_user.name)}

#{t("recruit_news.approval_recruit_news_title")} : #{recruit_news.title_translations[locale]}
#{t("recruit_news.click_here_to_see")} : #{url}

" + end + email = Email.new(:mail_to => useremail, :mail_subject => " #{t("recruit_news.recruit_news_subject")} : #{recruit_news.title_translations[locale]}.", :template => "email/recruit_news_email.html.erb", :template_data => {"html" => datatosend}) + email.save + email.deliver rescue nil + end + + def download_tmp_xml(url) + xml = File.join(Rails.root, "tmp", "ann_cc_ntu.xml") + open(xml, 'wb') do |fo| + fo.print open(url).read + end + end + + def import_from_tmp_xml(file) + xml = Nokogiri::XML(file) + return if xml.nil? + recruit_news = [] + xml.xpath("//channel").xpath("//item").each do |anns| + recruit_news << { + :title => (anns>"title").text, + :category => (anns>"category").text, + :postdate => (anns>"pubDate").text, + :text => (anns>"description").text, + :rss2_sn => (anns>"link").text.split("=").last + } + end + recruit_news.each do |anns| + ma = ModuleApp.where(:key => "recruit_news").first + cat = Category.where(:title => anns[:category]).first rescue nil + if cat.nil? + cat = Category.create(:title_translations => {"en" => anns[:category], "zh_tw" => anns[:category]}, :module_app_id => ma.id) + end + ann = RecruitNews.where(:rss2_sn => anns[:rss2_sn]).first rescue nil + if ann.nil? + ann = RecruitNews.new(:title_translations => {"en" => "", "zh_tw" => anns[:title]}, :postdate => anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => anns[:title]}, :text_translations => {"en" => "", "zh_tw" => anns[:text]}, :rss2_sn => anns[:rss2_sn], :category_id => cat.id, :approved => true, :create_user_id => current_user.id) + else + ann.update_attributes(:title_translations => {"en" => "", "zh_tw" => anns[:title]}, :postdate => anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => anns[:title]}, :text_translations => {"en" => "", "zh_tw" => anns[:text]}) + end + ann.save + end + File.delete(file) + end + + def import_from_wordpress(xmlfile) + xml_file = File.read(xmlfile) + doc = Nokogiri::XML.parse(xml_file) + + doc.xpath("//channel").each do|channel_data| + channel_data.xpath('//item').each do|itme| + + bu = RecruitNews.where(:rss2_sn => itme.xpath('wp:post_id').text ).first rescue nil + if bu.nil? + bu = RecruitNews.new + bu.approved = true + bu.rss2_sn = itme.xpath('wp:post_id').text + bu.title_translations = {"en" => itme.xpath('title').text, "zh_tw" => itme.xpath('title').text} + bu.text_translations = {"en" => itme.xpath('content:encoded').text, "zh_tw" => itme.xpath('content:encoded').text} + bu.postdate = itme.xpath('wp:post_date').text + + itme.xpath('category').each do |i_cate| + if i_cate["domain"].to_s == "category" + + cat = @module_app.categories.where(:title => i_cate.text.to_s).first rescue nil + if cat.nil? + cat = Category.new + cat.module_app = @module_app + cat.title_translations = {"en" => i_cate.text.to_s, "zh_tw" => i_cate.text.to_s} + cat.save + end + bu.category = cat + + elsif i_cate["domain"].to_s == "post_tag" + + tag = Tag.where(:name => i_cate.text.to_s ).first rescue nil + if tag.nil? + tag = Tag.new + tag.name_translations = {"en" => i_cate.text.to_s, "zh_tw" => i_cate.text.to_s} + tag.module_app_ids << @module_app.id + tag.save + end + + bu.tags = tag + end + end + + bu.save + end + + end + end + File.delete(xmlfile) + end + + def load_access_level + if (current_user.is_admin? rescue false) + @access_level = "admin" + elsif (current_user.is_manager?(@module_app) rescue false) + @access_level = "manager" + else + @access_level = "users" + end + end + + def user_can_approve?(anns=nil) + can_approve = false + setting = RecruitNewsSetting.first + case @access_level + when "admin" + can_approve = true + when "manager" + can_approve = true + else + can_approve = false + end + if !can_approve + if !anns.nil? + if setting.approvers.include?(current_user.id.to_s) + if (current_user.approved_categories_for_module(@module_app).include?(anns.category) rescue false) + can_approve = true + end + end + else + can_approve = setting.approvers.include?(current_user.id.to_s) + end + end + can_approve + end + +end diff --git a/app/helpers/recruit_news_helper.rb b/app/helpers/recruit_news_helper.rb new file mode 100644 index 0000000..c6396aa --- /dev/null +++ b/app/helpers/recruit_news_helper.rb @@ -0,0 +1,599 @@ +module RecruitNewsHelper + extend self + + def data_to_human_type(a,set_tag_ids=nil) + statuses = a.statuses_with_classname.collect do |status| + { + "status" => status["name"], + "status-class" => "status-#{status['classname']}" + } + end + files = a.recruit_news_files.map{|file| { "file_url" => file.file.url, "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue [] + files.delete(nil) + links = a.recruit_news_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue [] + author = User.find(a.create_user_id).member_profile.name rescue "" + desc = a.image_description + desc = (desc.nil? || desc == "" ? "recruit_news image" : desc) + link_to_show = (a.is_external_link? ? a.external_link : OrbitHelper.widget_item_url(a.to_param)) rescue "" + target = a.is_external_link ? "_blank" : "_self" + if @image_version == 'thumb' + image_url = a.image.thumb.url + elsif @image_version == 'mobile' + image_url = a.image.mobile.url + else + image_url = a.image.url + end + event_time_formated = a.event_time_formated + { + "recruit_news_links" => links, + "recruit_news_files" => files, + "title" => a.title, + "speaker-css" => (a.speaker.blank? ? "display: none;" : ""), + "host-css" => (a.host.blank? ? "display: none;" : ""), + "place-css" => (a.place.blank? ? "display: none;" : ""), + "event-time-css" => (event_time_formated.blank? ? "display: none;" : ""), + "notes-css" => (a.notes.blank? ? "display: none;" : ""), + "event-time-formated" => event_time_formated, + "speaker" => a.speaker, + "place" => a.place, + "host" => a.host, + "notes" => a.notes, + "source-site" => "", + "source-site-title" => "", + "source-site-link" => "", + "subtitle" => a.subtitle, + "statuses" => statuses, + "category" => (a.category.title rescue ""), + "tag_ids" => (set_tag_ids.nil? ? (a.tag_ids.map{|id| id.to_s}.to_s.gsub('"',"'") rescue '[]') : set_tag_ids), + "postdate" => event_time_formated, + "event_start_date" => a.event_date_frontend, + "event_end_date" => a.event_end_date_frontend, + "event_date" => event_time_formated, + "author" => author, + "link_to_show" => link_to_show, + "target" => target, + "img_src" => image_url || "/assets/announcement-default.jpg", + "img_description" => desc + } + end + def get_feed_annc(type,site_source,locale,categories=nil,max_len=nil,sort_maps=nil,extra_match_cond=nil) + ma_key = 'recruit_news_mod' + if categories.nil? + if type == "index" + categories = Array(OrbitHelper.page_categories) + elsif type == "widget" + categories = Array(OrbitHelper.widget_categories) + else + categories = [] + end + end + categories = ["all"] if categories.length==0 + data = SiteFeedAnnc.get_feed_cache( + ma_key, + categories, + site_source, + locale, + type=='widget', + max_len, + sort_maps, + extra_match_cond + ) + data + end + def get_feed_recruit_news(type,site_source=nil,categories=nil,max_len=nil,extra_match_cond=[]) + locale = OrbitHelper.get_site_locale.to_s + feeds = [] + feeds_count = 0 + if !(defined? SiteFeedAnnc).nil? + sort_maps = nil + if @show_today_data_first + sort_maps = {event_date: :asc, is_top: :desc, postdate: :asc, id: :asc} + else + sort_maps = {is_top: :desc} + if is_postdate_sort_first + sort_maps = sort_maps.merge({postdate: :desc, event_date: :desc, id: :desc}) + else + sort_maps = sort_maps.merge({event_date: :desc, postdate: :desc, id: :desc}) + end + end + match_cond = { + "is_hidden" => {"$ne" => true}, + "$and" => [ + {"postdate" => {"$lte"=> Time.now}}, + { + "$or" => [ + {"deadline" => {"$gte"=> Time.now}}, + {"deadline" => nil} + ] + } + ], + "title" => {"$gt"=>""} + } + if !extra_match_cond.empty? + match_cond["$and"] += extra_match_cond + end + if @show_today_data_first + match_cond["event_date"] = {"$gte" => Date.today.to_time} + end + feeds, feeds_count = get_feed_annc(type,site_source,locale,categories,max_len,sort_maps,match_cond) + end + return feeds, feeds_count + end + + def get_sorted_recruit_news(data_count=nil) + params = OrbitHelper.params + locale = OrbitHelper.get_site_locale.to_s + page_number = OrbitHelper.page_number.to_i + page_number = 1 if page_number == 0 + page_data_count = data_count || OrbitHelper.page_data_count.to_i + feeds_anns = [] + if @type == "show_widget" + tags = @tags + categories = @categories + else + page = OrbitHelper.page + tags = page.tags + tags = params[:tags] if params[:tags].present? + categories = params['category']=='all' ? (page.categories || []) : (Array(params['category']) rescue (page.categories || [])) + if params['category'].present? && tags.blank? + tags = ["all"] + end + + module_app = ModuleApp.where(key: 'recruit_news_mod').first + @enable_search_flag = false + @show_option_items = nil + @show_today_data_first = false + if module_app && page.respond_to?(:select_option_items) + @show_option_items = module_app.show_option_items + if !@show_option_items.nil? + page.select_option_items.each do |select_option_item| + value = YAML.load(select_option_item.value)[I18n.locale] + case select_option_item.field_name + when @show_option_items.keys[1].to_s + if value == I18n.t('yes_') + @enable_search_flag = true + end + when @show_option_items.keys[3].to_s + if value == I18n.t('yes_') + @show_today_data_first = true + end + end + end + end + end + + if @enable_search_flag + if categories.include? 'all' + @categories = module_app.categories + else + cat_maps = Category.where(:id.in => categories).collect{|cat| [cat.id.to_s, cat]}.to_h + @categories = categories.map{|v| cat_maps[v.to_s]}.compact + end + end + end + recruit_news_list = [] + recruit_news = [] + feeds_count = 0 + extra_match_cond = [] + if !params[:keywords].blank? + extra_match_cond << { + "title_plain_text" => OrbitHelper.get_keyword_regex(params[:keywords]) + } + end + if !params[:stime].blank? + stime = OrbitHelper.get_time_from_str(params[:stime]) + extra_match_cond << { + "event_date" => {"$gte" => stime} + } + end + if !params[:etime].blank? + etime = OrbitHelper.get_time_from_str(params[:etime]) + 1.days + extra_match_cond << { + "event_date" => {"$lt" => etime} + } + end + if !extra_match_cond.empty? + recruit_news = recruit_news.and(extra_match_cond) + end + if !params["source"].present? + recruit_news = @show_today_data_first ? + RecruitNews.can_display_and_sorted_according_today : + RecruitNews.can_display_and_sorted + if params["orbithashtag"].present? + recruit_news = recruit_news + .filter_by_categories(categories, false).filter_by_hashtag(OrbitHelper.page_hashtag_id) + .where(:title.nin => ["",nil]) + else + recruit_news = recruit_news + .filter_by_categories(categories, false).filter_by_tags(tags) + .where(:title.nin => ["",nil]) + end + if @type == "show_widget" + if !params[:uids].blank? + member_profile = MemberProfile.any_in(:uid=>params[:uids]) + user_ids = member_profile.map{|m| m.user.id rescue nil}.select{|id| !id.nil?} + recruit_news = recruit_news.where(:create_user_id.in=>user_ids) + end + end + recruit_news = recruit_news.limit(page_number*page_data_count) + recruit_news_list = recruit_news.to_a + if !(defined? SiteFeed).nil? && @type != "show_widget" + feeds_anns, feeds_count = get_feed_recruit_news("index",nil,nil,page_number*page_data_count, extra_match_cond) + end + elsif @type != "show_widget" + feeds_anns, feeds_count = get_feed_recruit_news("index",params["source"],nil,page_number*page_data_count, extra_match_cond) + end + if !feeds_anns.blank? + top_anns = recruit_news_list.select{|v| v.is_top} + feeds_anns.select{|v| v['is_top']} + rest_all_anns = recruit_news_list.select{|v| !v.is_top} + feeds_anns.select{|v| v['is_top'] != true} + all_filter = sort_recruit_news(top_anns) + sort_recruit_news(rest_all_anns) + else + all_filter = recruit_news_list + end + if page_data_count != 0 + sorted = all_filter[(page_number-1)*page_data_count...page_number*page_data_count] + else + sorted = all_filter + end + annc_count = recruit_news.count + feeds_count + total_pages = page_data_count == 0 ? 1 : (annc_count.to_f / page_data_count).ceil + [sorted,total_pages] + end + + def sort_recruit_news(recruit_news_list) + if @show_today_data_first || !is_postdate_sort_first + if enable_manually_sort + recruit_news_list = recruit_news_list.sort_by { |recruit_news| + tmp1 = recruit_news["event_date"].blank? + tmp2 = recruit_news["postdate"].blank? + [ + (@show_today_data_first ? recruit_news['sort_number'].to_i : -recruit_news['sort_number'].to_i), + tmp1 ? 0 : 1, tmp1 ? nil : recruit_news["event_date"].to_time, + tmp2 ? 0 : 1, tmp2 ? nil : recruit_news["postdate"].to_time + ] + } + else + recruit_news_list = recruit_news_list.sort_by { |recruit_news| + tmp1 = recruit_news["event_date"].blank? + tmp2 = recruit_news["postdate"].blank? + [ + tmp1 ? 0 : 1, tmp1 ? nil : recruit_news["event_date"].to_time, + tmp2 ? 0 : 1, tmp2 ? nil : recruit_news["postdate"].to_time + ] + } + end + if !@show_today_data_first + recruit_news_list = recruit_news_list.reverse + end + else + if enable_manually_sort + recruit_news_list = recruit_news_list.sort_by { |recruit_news| + tmp1 = recruit_news["event_date"].blank? + tmp2 = recruit_news["postdate"].blank? + [ + -a['sort_number'].to_i, + tmp2 ? 0 : 1, tmp2 ? nil : recruit_news["postdate"].to_time, + tmp1 ? 0 : 1, tmp1 ? nil : recruit_news["event_date"].to_time + ] + }.reverse + else + recruit_news_list = recruit_news_list.sort_by { |recruit_news| + tmp1 = recruit_news["event_date"].blank? + tmp2 = recruit_news["postdate"].blank? + [ + tmp2 ? 0 : 1, tmp2 ? nil : recruit_news["postdate"].to_time, + tmp1 ? 0 : 1, tmp1 ? nil : recruit_news["event_date"].to_time + ] + }.reverse + end + end + return recruit_news_list + end + + def render_view_for_recruit_news(overridehtml=nil) + @key = Site.first.template + def render_link_to_edit(html, url_to_edit) + if html.scan("{{link_to_edit}}").length == 0 + html = url_to_edit.blank? ? html : html + "

#{t(:edit)}

" + else + html = url_to_edit.blank? ? html.gsub("{{link_to_edit}}","") : html.gsub("{{link_to_edit}}","

#{t(:edit)}

") + end + return html + end + + def parsing_repeats_again(elements,d,level) + newhtml = [] + oldhtml = [] + elements.each do |el| + html_to_render = "" + data_name = el.attr("data-list") + wrap_elements = el.css("*[data-list][data-level='#{level}']") + if d[data_name] + d[data_name].each_with_index do |item,i| + element = el.inner_html + if wrap_elements.count > 0 + htmls = parsing_repeats_again(wrap_elements,d[data_name][i], level + 1) + htmls[0].each_with_index do |html,i| + element = element.gsub(html,htmls[1][i]) + end + end + item.each do |key,value| + if !value.kind_of?(Array) + value = value.nil? ? "" : value + element = element.gsub("{{#{key}}}",value.to_s.html_safe) + element = element.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe) + element = render_link_to_edit(element, value) if key.eql?("url_to_edit") + end + end + html_to_render = html_to_render + element + end + temp = el.to_s + oldhtml << temp + temp = temp.gsub(el.inner_html, html_to_render) + newhtml << temp + end + end + [oldhtml,newhtml] + end + + + if @target_action == "index" + filename = File.basename(overridehtml.nil? ? params[:layout_type] : overridehtml) + f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'recruit_news_mod', "#{filename}.html.erb") + if !File.exist?(f) + f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'recruit_news_mod', "index.html.erb") + if !File.exist?(f) + return "
Maybe the administrator has changed the theme, please select the index page design again from the page settings.
".html_safe + end + end + file = File.open(f) + doc = Nokogiri::HTML(file, nil, "UTF-8") + file.close + controller = RecruitNewsController.new + begin + data = @data# rescue nil + rescue Exception => e + write_debug_file(e,'recruit_news_mod',@target_action) if Site::DEBUG + end + if !data.nil? + wrap_elements = doc.css("*[data-list][data-level='0']") + htmls = parsing_repeats_again(wrap_elements,data,1) + html = doc.to_s + htmls[0].each_with_index do |h,i| + html = html.gsub(h,htmls[1][i]) + end + extras = data["extras"] || {} + extras["page-title"] = Page.find_by(:page_id => params[:page_id]).name rescue "" if !extras["page-title"] + extras.each do |key,value| + value = value.nil? ? "" : value + html = html.gsub("{{#{key}}}",value.to_s.html_safe) + html = html.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe) + end + total_pages = data['total_pages'].to_i rescue 1 + if total_pages > 1 + html = html.gsub("{{pagination_goes_here}}",create_pagination(total_pages)) + else + html = html.gsub("{{pagination_goes_here}}",""); + end + html.html_safe + else + return "
No content to show.
".html_safe + end + else + filename = overridehtml.nil? ? @target_action : overridehtml + f = File.join(Rails.root, 'app', 'templates', "#{@key}", 'modules', 'recruit_news_mod', "#{filename}.html.erb") + if File.exist?(f) + file = File.open(f) + doc = Nokogiri::HTML(file, nil, "UTF-8") + file.close + controller = RecruitNewsController.new + begin + data = @data# rescue nil + rescue Exception => e + write_debug_file(e,'recruit_news_mod',@target_action) if Site::DEBUG + end + if data.nil? + return "
No content to show.
".html_safe + end + + if data.blank? || data.empty? + file = File.open("#{Rails.root}/app/views/errors/404.html") + doc = Nokogiri::HTML(file, nil, "UTF-8") + file.close + doc.to_html.html_safe + else + unless data['impressionist'].blank? + Thread.new do + impression = data['impressionist'].impressions.create + impression.user_id = request.session['user_id'] + impression.controller_name = 'recruit_news' + impression.action_name = @target_action + impression.ip_address = request.remote_ip + impression.session_hash = request.session.id + impression.request_hash = @impressionist_hash + impression.referrer = request.referrer + impression.save + end + data['impressionist'].inc(view_count: 1) + data["data"]["view_count"] = data["impressionist"].view_count if data["data"].present? + end + wrap_elements = doc.css("*[data-list][data-level='0']") + if wrap_elements.count == 0 + wrap_element_html = doc.to_s + el = wrap_element_html + data.each do |key,value| + next if key.eql? 'impressionist' + value = value.nil? ? "" : value + el = el.gsub("{{#{key}}}",value.to_s.html_safe) + el = el.gsub("%7B%7B#{key}%7D%7D",value.to_s.html_safe) + end + el.html_safe + else + keys = data.keys + not_array_key = nil + data.keys.each do |key| + not_array_key = key if data["#{key}"].kind_of?(Hash) + end + htmls = parsing_repeats_again(wrap_elements,data,1) + html = doc.to_s + htmls[0].each_with_index do |h,i| + html = html.gsub(h,htmls[1][i]) + end + extras = data["#{not_array_key}"] || {} + extras.each do |key,value| + next if key.eql? 'impressionist' + value = value.nil? ? "" : value + html = html.gsub("{{#{key}}}",value.to_s) + html = html.gsub("%7B%7B#{key}%7D%7D",value.to_s) + end + html = render_link_to_edit(html, data["url_to_edit"]) if !data["url_to_edit"].nil? + total_pages = data['total_pages'].to_i rescue 1 + if @show_page == "false" + html = html.gsub("{{pagination_goes_here}}","") + else + if total_pages > 1 + html = html.gsub("{{pagination_goes_here}}",create_pagination(total_pages)) + else + html = html.gsub("{{pagination_goes_here}}","") + end + end + html = Nokogiri::HTML.parse(html) + html.css('.i-recruit_news__page-title').remove + dates = html.css("*[date-format]") + if !dates.blank? + dates.each do |d| + begin + format = d.attributes["date-format"].value + date = DateTime.parse(d.inner_text) + d.inner_html = d.inner_html.gsub(d.inner_text.strip, " " + date.strftime(format)) + rescue + next + end + end + end + html.css("body")[0].inner_html = html.css("body")[0].inner_html.gsub("{{page-title}}","") + html.css("body").to_html.html_safe + end + end + else + return "
There is a problem with the design. We will try to fix it as soon as possible. Sorry for the inconvenience!! :(
".html_safe + end + end + end + def get_layouts(module_app) + layout_types = [] + @key = Site.first.template + f = File.join("#{Rails.root}/app/templates/#{@key}/modules/#{module_app}/info.json") + if File.exist?(f) + info = File.read(f) + hash = JSON.parse(info) rescue {} + frontends = hash["frontend"] || [] + frontends.each do |frontend| + frontend["thumbnail"] = "/assets/#{module_app}/thumbs/#{frontend["thumbnail"]}" + layout_types << frontend + end + end + if layout_types.empty? + Dir.glob("#{Rails.root}/app/templates/#{@key}/modules/#{module_app}/*").each do |w| + next if File.ftype(w).eql?("directory") + w = File.basename(w, ".*") + w = File.basename(w, ".*") + if w[0,1] != "_" && w[0,1] != "s" && w != "info" + layout_types << w + end + end + end + layout_types + end + def render_ad_banner(event_carousel_images,data) + ("
+
+
" + + event_carousel_images.collect do |e| + "
+ \"#{e['description_text']}\" +
+

#{e['description']}

+
+
+
" + end.join+ + "
+
+
    + + +
+
+
+

1/#{data['carousel_count']}

+
    " + + event_carousel_images.collect do |e| + "
  • +
    + \"#{e['description_text']}\" +
    +
  • " + end.join + + "
+
    + + +
+
+
").html_safe + end + + def complementaryColor(my_hex) + if my_hex[0] == '#' + my_hex = my_hex[1..-1] + end + rgb = my_hex.split(//).each_slice(my_hex.length/3).map{|v| v.join} + comp = rgb.map{|a| (255 - a.to_i(16)).to_s(16).rjust(2,'0')} + '#'+comp.join + end + + def lighten_color(my_hex,percent) + if my_hex[0] == '#' + my_hex = my_hex[1..-1] + end + rgb = my_hex.split(//).each_slice(my_hex.length/3).map{|v| v.join} + comp = rgb.collect do |a| + tmp = a.to_i(16)*(1+percent/100.0) + tmp = 255 if tmp>255 + tmp = 0 if tmp < 0 + tmp.to_i.to_s(16).rjust(2,'0') + end + '#'+comp.join + end + + def enable_manually_sort + if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash + OrbitHelper::SharedHash['recruit_news_mod'][:enable_manually_sort] + else + RecruitNewsSetting.first.enable_manually_sort rescue false + end + end + + def is_postdate_sort_first + if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash + OrbitHelper::SharedHash['recruit_news_mod'][:is_postdate_sort_first] + else + RecruitNewsSetting.first.is_postdate_sort_first rescue false + end + end +end diff --git a/app/mailers/.keep b/app/mailers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/models/.keep b/app/models/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/models/event_carousel_image.rb b/app/models/event_carousel_image.rb new file mode 100644 index 0000000..ad455b2 --- /dev/null +++ b/app/models/event_carousel_image.rb @@ -0,0 +1,15 @@ +# encoding: utf-8 +class EventCarouselImage + + include Mongoid::Document + include Mongoid::Timestamps + + mount_uploader :file, AssetUploader + + field :description, localize: true + + belongs_to :recruit_news + def description_text + Nokogiri::HTML(self.description.to_s).css("body").text() rescue "" + end +end diff --git a/app/models/recruit_news.rb b/app/models/recruit_news.rb new file mode 100644 index 0000000..579fb91 --- /dev/null +++ b/app/models/recruit_news.rb @@ -0,0 +1,658 @@ +class RecruitNews + include Mongoid::Document + include Mongoid::Timestamps + + include OrbitModel::Status + include OrbitModel::Impression + # encoding: utf-8 + include OrbitTag::Taggable + include OrbitHashtag::Hashtaggable + include OrbitCategory::Categorizable + include Slug + require 'recruit_news_mod/cache' + include RecruitNewsMod::Cache + attr_accessor :org_tag_ids, :org_category_id + def tags=(ids) + self.org_tag_ids = self.tag_ids + super(ids) + end + def category=(cat) + self.org_category_id = self.category_id + super(cat) + end + def tag_ids=(ids) + self.org_tag_ids = self.tag_ids + super(ids) + end + def category_id=(cat_id) + self.org_category_id = self.category_id + super(cat_id) + end + def tags=(ids) + self.org_tag_ids = self.tag_ids + super(ids) + end + def []=(index,value) + if index.to_s=='tags' || index.to_s=='tag_ids' + self.org_tag_ids = self.tag_ids + elsif index.to_s=='category' || index.to_s=='category_id' + self.org_category_id = self.category_id + end + super(index,value) + end + SubPart.class_eval { include RecruitNewsMod::Cache } + Page.class_eval { include RecruitNewsMod::Cache } + before_destroy do + RecruitNewsCache.all.destroy + end + Week_day_trans = {:en=>["Sun","Mon","Tue","Wed","Thu","Fri","Sat"], + :zh_tw=>["(日)","(一)","(二)","(三)","(四)","(五)","(六)"]} + field :event_date_use_default_setting, type: Boolean, default: true + field :including_day_of_the_week, type: Boolean, default: true + field :including_time, type: Boolean, default: true + field :hour_clock_24, type: Boolean, default: true + field :is_edit, type: Boolean, default: false #use to check whether the preview record changed + field :copy_id + field :custom_carousel_image_type, :type => Integer, :default => 0 # 0: default, 1: carousel, 2: album + field :custom_carousel_image_width, type: String, default: "" + field :image_display_class, type: String, default: "full-size-img" #3 choices: full-size-img , pull-left , pull-right + field :add_to_calendar,type: Boolean,default: false + field :calendar_start_date, :type => DateTime + field :calendar_end_date, :type => DateTime + field :calendar_all_day,type: Boolean,default: false + field :all_day,type: Boolean,default: false #old field + field :calendar_type_id + field :event_id + field :place, type: String, localize: true + field :title, as: :slug_title, type: String, localize: true + field :title_plain_text, type: String, localize: true + field :speaker, type: String, localize: true + field :host, type: String, localize: true + field :subtitle, localize: true + field :text, localize: true, default: '' + field :notes, localize: true + field :create_user_id + field :update_user_id + field :public, :type => Boolean, :default => true + field :event_date , :type => DateTime, :default => Time.now + field :event_end_date , :type => DateTime + field :postdate , :type => DateTime, :default => Time.now + field :deadline , :type => DateTime + field :rss2_sn + field :approved, :type => Boolean, :default => false + field :is_preview, :type => Boolean, :default => false + field :expirable_created_at, type: DateTime + field :rejected, :type => Boolean, :default => false + field :reapproval, :type => Boolean, :default => false + field :rejection_reason + field :is_external_link, :type => Boolean, :default => false + field :external_link + field :display_subtitle, :type => Boolean, :default => false + field :display_img, :type => Boolean, :default => false + + field :email_id + field :email_sent, :type => Boolean, :default => false + field :email_sentdate , :type => DateTime + field :email_member_ids + field :other_mailaddress + field :image_description, localize: true + field :top_end_date, :type => DateTime + field :other_member_profiles, :type => Array, :default => [] + + mount_uploader :image, ImageUploader + + has_many :recruit_news_links, :autosave => true, :dependent => :destroy + has_many :recruit_news_files, :autosave => true, :dependent => :destroy + has_many :event_carousel_images, :autosave => true, :dependent => :destroy + accepts_nested_attributes_for :recruit_news_files, :allow_destroy => true + accepts_nested_attributes_for :recruit_news_links, :allow_destroy => true + accepts_nested_attributes_for :event_carousel_images, :allow_destroy => true + before_destroy :destroy_email + + scope :open_in_future, ->{where(:is_hidden.ne=>true,:is_preview.ne => true,:postdate.gt=>Time.now).order(postdate: :asc)} + scope :can_display_and_sorted, ->{ + is_approved_and_show + .valid_time_range + .order( + RecruitNewsHelper.is_postdate_sort_first ? + {postdate: :desc, event_date: :desc, id: :desc} : + {event_date: :desc, postdate: :desc, id: :desc} + ) + } + scope :can_display_and_sorted_according_today, ->{ + is_approved_and_show + .order(event_date: :asc).valid_time_range.order({postdate: :asc, id: :asc}).where(:event_date.gte => Date.today.to_time) + } + scope :valid_time_range, ->{ + and_any_of([ + {"postdate"=>{"$lte"=> Time.now}, "deadline"=>{"$gte"=> Time.now}}, + {"postdate"=>{"$lte"=> Time.now}, "deadline"=>nil} + ]) + .order( + RecruitNewsHelper.enable_manually_sort ? + {is_top: :desc, sort_number: :asc} : + {is_top: :desc} + ) + } + scope :is_approved, ->{where(:approved => true)} + scope :is_approved_and_show, ->{where(:approved => true,:is_hidden.ne=>true,:is_preview.ne => true)} + scope :filter_cats_and_tags, ->(cats,tags) {filter_by_widget_categories(cats,false).filter_by_tags(tags)} + before_create :set_expire + before_save :check_limit + before_save do + if @is_hidden_changed.nil? || @is_hidden_changed != true + @is_hidden_changed = self.is_hidden_changed? + end + if self.is_top_changed? && !self.is_top + self.sort_number = nil + end + self.migrate_title_plain_text + end + index({postdate: 1}, { unique: false, background: true }) + index({is_top: -1, postdate: -1, event_date: -1, _id: -1}, { unique: false, background: true }) + index({is_top: -1, event_date: 1, postdate: -1, _id: -1}, { unique: false, background: true }) + index({approved: -1, is_hidden: 1, is_preview: 1, is_top: -1, postdate: -1, event_date: -1, _id: -1, deadline: -1}, { unique: false, background: true }) + index({approved: -1, is_hidden: 1, is_preview: 1, is_top: -1, event_date: 1, postdate: -1, event_date: -1, _id: -1, deadline: -1}, { unique: false, background: true }) + if RecruitNewsSetting.pluck(:enable_manually_sort).first == true + index({approved: -1, is_hidden: 1, is_preview: 1, is_top: -1, sort_number: 1, postdate: -1, event_date: -1, _id: -1, deadline: -1}, { unique: false, background: true }) + index({approved: -1, is_hidden: 1, is_preview: 1, is_top: -1, sort_number: 1, event_date: 1, postdate: -1, _id: -1, deadline: -1}, { unique: false, background: true }) + end + field :sort_number, type: Integer + def get_org_model + if self.is_preview + org_model = nil + if self.copy_id + org_model = self.class.find(self.copy_id) rescue nil + else + org_model = self.class.where(:title=>self.title,:is_preview.ne=>true).desc(:updated_at).first + end + org_model.nil? ? self : org_model + else + self + end + end + def date_parse_format + #all_day ? '%Y-%m-%d' : '%Y-%m-%d %H:%M' + event_date_format + end + def get_weekday(w) + trans = self.class::Week_day_trans + if trans.keys.include?(I18n.locale) + trans[I18n.locale][w] + else + trans[:en][w] + end + end + def event_date_format + @event_date_format ||= (self.event_date_use_default_setting ? RecruitNewsSetting.event_date_default_format : self.event_date_custom_format) + end + def event_date_custom_format + datetime_format = "%Y-%m-%d" + if self.including_day_of_the_week + datetime_format += " %a" + end + if self.including_time + if self.hour_clock_24 + datetime_format += " %H:%M" + else + datetime_format += " %I:%M %P" + end + end + datetime_format + end + def custom_strftime(dt, datetime_format) + if dt + dt.strftime(datetime_format.sub("%a","%%a")).sub("%a",get_weekday(dt.wday)) + else + "" + end + end + def event_time_formated_for_frontend + st,ed = self.event_time_formated.split("~") + if st.nil? + st = "" + else + st = "#{st}" + end + if ed.nil? + st + else + ed = "#{ed}" + "#{st} ~ #{ed}" + end + end + def event_date_frontend + s = self.event_date.in_time_zone(Time.zone.utc_offset / 3600) rescue nil + if s.blank? + "" + else + parse_format = self.date_parse_format + custom_strftime(s, self.date_parse_format) + end + end + def event_end_date_frontend + e = self.event_end_date.in_time_zone(Time.zone.utc_offset / 3600) rescue nil + if e.blank? + "" + else + parse_format = self.date_parse_format + custom_strftime(e, self.date_parse_format) + end + end + def event_time_formated + s = self.event_date.in_time_zone(Time.zone.utc_offset / 3600) rescue nil + e = self.event_end_date.in_time_zone(Time.zone.utc_offset / 3600) rescue nil + if s.blank? && e.blank? + "" + elsif e.blank? + custom_strftime(s, self.date_parse_format) + elsif s.blank? + "~ " + custom_strftime(e, self.date_parse_format) + else + parse_format = self.date_parse_format + if s.to_date == e.to_date + parse_format_arr = parse_format.split(/(%d %a|%d) /) + if parse_format_arr.count > 1 + parse_format_arr = parse_format_arr[0..-2].join(""), parse_format_arr[-1] + end + date_str = custom_strftime(s, parse_format_arr[0]) + s_time = s.strftime(parse_format_arr[1].to_s) + e_time = e.strftime(parse_format_arr[1].to_s) + if e_time.present? + if s_time != e_time + "#{date_str} #{s_time} ~ #{e_time}" + else + "#{date_str} #{s_time}" + end + else + date_str + end + else + custom_strftime(s, self.date_parse_format) + " ~ " + custom_strftime(e, self.date_parse_format) + end + end + end + def to_calendar_param + self.to_param + end + def calendar_type + CalendarType.where(:category_id.in => self.calendar_type_id) + end + def event + if !self.event_id.nil? + Event.where(:id => self.event_id).first + else + nil + end + end + def check_limit + check_status_limit(update_user) + end + def check_status_limit(user,check_only=false) + role_ids = user.member_profile.roles.map(&:id) rescue [] + status_settings = (role_ids.collect do |role_id| + RecruitNewsSetting.first.recruit_news_status_settings.select{|v| v.role_id.to_s == role_id.to_s} + end.flatten rescue []) + reach_limit = [] + if status_settings.count != 0 + reach_limit = status_settings.collect do |status_setting| + status = status_setting.status + if status_setting.top_limit.to_i <= self.class.where(:is_preview.ne=>true,:update_user_id.in => Role.find(status_setting.role_id).member_profiles.collect(&:user).flatten.uniq.map{|v| v.id},status => true).count + if !check_only + if self[status] && !self.class.where(id:self.id).first[status] + self[status] = false + nil + end + else + status + end + else + nil + end + end.compact + reach_limit = reach_limit.group_by{|v| v}.collect do |k,v| + if v.count >= user.member_profile.roles.count + k + else + nil + end + end.compact + end + reach_limit + end + def set_expire + self.expirable_created_at = Time.now if self.is_preview + return true + end + + def update_user + User.find(update_user_id) rescue nil + end + + def update_user=(user) + self.update_user_id = user.id + end + + def email_members + MemberProfile.find(self.email_member_ids) rescue [] + end + + def get_other_member_profiles_names_for_frontend + MemberProfile.find(self.other_member_profiles).map{|m,n| {"name" => m.name}} rescue [] + end + + def email_addresses + addresses = self.email_members.collect{|member| member.email} rescue [] + addresses = addresses +[self.other_mailaddress] if !self.other_mailaddress.blank? + addresses.flatten + end + + def email + mail = Email.find(self.email_id) rescue nil + end + + def expired? + (self.deadline < Time.now) rescue false + end + + def destroy_email + mail = Email.find(self.email_id) rescue nil + mail.destroy if !mail.nil? + end + + def self.remove_expired_status + self.where(:is_top => true, :top_end_date.ne => nil, :top_end_date.lt => Time.now).each do |b| + b.is_top = false + b.top_end_date = nil + b.save + end + end + + def display_subtitle? + self.display_subtitle rescue false + end + + def display_img? + self.display_img rescue false + end + def statuses + statuses = [] + statuses << top_text if is_top? + statuses << hot_text if is_hot? + statuses << hidden_text if is_hidden? + statuses + end + def statuses_with_classname + statuses = [] + statuses << {"name" => top_text, "classname" => "top"} if is_top? + statuses << {"name" => hot_text, "classname" => "hot"} if is_hot? + statuses << {"name" => hidden_text, "classname" => "hidden"} if is_hidden? + statuses + end + def status_for_table + status = "" + status << "#{top_text} " if self.is_top + status << "#{hot_text} " if self.is_hot + status << "#{hidden_text}"if self.is_hidden + status.html_safe + end + def top_text + I18n.t("announcement.status.top") + end + def hot_text + I18n.t("announcement.status.hot") + end + def hidden_text + I18n.t("announcement.status.hidden") + end + def carousel_image_type + (self.custom_carousel_image_type == 0 ? RecruitNewsSetting.last.carousel_image_type : self.custom_carousel_image_type - 1) rescue 0 + end + def carousel_image_width + (self.custom_carousel_image_width.blank? ? RecruitNewsSetting.last.carousel_image_width : self.custom_carousel_image_width) + end + + def self.agenda_events(agenda_start, agenda_end,read_more_url) + events = self.monthly_event(agenda_start, agenda_end).convert_front(read_more_url) + end + def self.monthly_event(start_date,end_date) + self.any_of({:event_date.lte => start_date,:event_end_date.gte => start_date},{:event_date.gte => start_date,:event_end_date.lte => end_date},{:event_date.lte => end_date,:event_end_date.gte => end_date}).asc(:event_date) + end + def self.convert_front(read_more_url) + self.all.collect do |re| + {:id => re.id.to_s, + :title=>re.title, + :note=>re.subtitle || "", + :allDay => false, + :color => nil, + :url_linked => (re.is_external_link ? re.external_link : "#{read_more_url}/#{re.to_param}" rescue ""), + :start => re.event_date, + :end => re.event_end_date} + end + end + def self.smart_convertor(text,url) + html_string = text + html_string = html_string.gsub(/img.*?src="(?=\/)(.*?)|a.*?href="(?=\/)(.*?)/i){|w| w+url} + html_string = html_string.gsub(/img.*?src="\.\.(?=\/)(.*?)|a.*?href="\.\.(?=\/)(.*?)/i){|w| w[0...-2]+url} + return html_string + end + def get_data(more_url=nil, base_url=nil, cat_ids=nil, tag_ids=nil, locale=nil) + locale = I18n.locale if locale.nil? + base_url = Site.first.root_url if base_url.nil? + user = User.find(self.create_user_id) rescue nil + if !user.nil? + author = user.member_name || user.user_name + else + author = "" + end + a = {} + if more_url.nil? + if cat_ids.nil? + cat_ids = [self.category_id] + end + if tag_ids.nil? + tag_ids = self.tag_ids + end + basic_query = {:module => 'recruit_news_mod',:enabled_for=>locale} + if !cat_ids.blank? + query = basic_query.merge({:categories.all => cat_ids}) + else + query = basic_query.clone + end + if !tag_ids.blank? + query = query.merge({:tags.all => tag_ids}) + end + page = Page.where(query).first || Page.where(basic_query).first + more_url = page ? page.get_url : nil + end + if more_url + a['show_url'] = "#{more_url}/#{self.to_param}" + end + a["org_is_top"] = (self.is_top ? 1 : 0) + a["id"] = self.uid + a["title_translations"] = self.title_translations + a["subtitle_translations"] = self.subtitle_translations + a["speaker_translations"] = self.speaker_translations + a["host_translations"] = self.host_translations + a["place_translations"] = self.place_translations + a["notes_translations"] = self.notes_translations + a["text_translations"] = {} + text_translations = self.text_translations + text_translations.each do |l, text| + a["text_translations"][l] = self.class.smart_convertor(text,base_url) + end + a["event_date"] = self.event_date + a["event_end_date"] = self.event_end_date + a["postdate"] = self.postdate + a["img_description_translations"] = self.image_description_translations + a["image"] = {} + a["display_img"] = self.display_img + if self.image.present? + a["image"]["original"] = base_url + self.image.url + a["image"]["thumb"] = base_url + self.image.thumb.url + a["image"]["mobile"] = base_url + self.image.mobile.url + a["img_src"] = a["image"]["thumb"] || "/assets/recruit_news-default.jpg" + image = MiniMagick::Image.open(self.image.path) rescue nil + if image + a["image"]["width"] = image[:width] + a["image"]["height"] = image[:height] + end + end + a["tags"] = [] + a["category"] = {} + a["author"] = author + a["params"] = self.to_param + a["subtitle_ann"] = self.subtitle if self.display_subtitle? + a["recruit_news_links"] = [] + a["recruit_news_files"] = [] + a["event_carousel_images"] = self.event_carousel_images.map{|image| {"src"=> base_url + image.file.url,"description"=>image.description.to_s,"description_text"=>image.description_text }} + a["external_link"] = self["is_external_link"] ? self.external_link : nil + self.tags.each do |tag| + a["tags"] << {"name_translations" => tag.name_translations} + end + cat = self.category + a["category"] = cat ? {"title_translations" => cat.title_translations} : {"title_translations" => {}} + self.recruit_news_links.each do |bl| + b = {} + b["link_url"] = bl.url + b["link_title_translations"] = bl.title_translations.map{|k,v| [k, (v.blank? ? b["link_url"] : v)]}.to_h + a["recruit_news_links"] << b + end + self.recruit_news_files.each do |bf| + next if bf.file.blank? + b = {} + b["description_translations"] = bf.description_translations + b["file_url"] = base_url + bf.file.url + b["file_title_translations"] = bf.title_translations.map{|k,v| [k, (v.blank? ? File.basename(b["file_url"]) : v)]}.to_h + a["recruit_news_files"] << b + end + return a + end + def get_related_feeds + @category_id ||= self.category_id + @tag_ids ||= self.tag_ids + related_feeds = RecruitNewsFeed.any_of({:category_ids=>@category_id.to_s}, {:tag_ids.in=>@tag_ids.map(&:to_s)}).to_a + end + def notify_feed(type="create") + if @is_hidden_changed + if self.is_hidden + if type == 'create' + return [] + else + type = 'destroy' + end + else + type = 'create' + end + elsif self.is_hidden + return [] + end + related_feeds = self.get_related_feeds.select{|feed| feed.remote_urls.count != 0} + if related_feeds.count != 0 + bulletin_data = self.get_data + if type == "destroy" + tmp_data = {'type'=>'destroy', 'data'=>[self.uid]} + else + tmp_data = {'type'=>type, 'data'=>[bulletin_data.to_json]} + end + request = Net::HTTP::Post.new('/xhr/feeds/notify_change', 'Content-Type' => 'application/json') + related_feeds.each do |feed| + tmp_data['uid'] = feed.uid + request.body = tmp_data.to_json + feed.remote_urls.each do |remote_url| + uri = URI(remote_url) + http_req = Net::HTTP.new(uri.host, uri.port) + if remote_url.include?('https') + http_req.use_ssl = true + end + response = self.class.http_request( http_req , request ) + end + end + end + end + + def migrate_title_plain_text + self.title_plain_text_translations = OrbitHelper.get_plain_text_translations(self.title_translations) + end + + def self.notify_all_feed(force_update=false) + related_feeds = RecruitNewsFeed.where(:remote_urls.nin=>[nil, []]).to_a + related_feeds.each do |feed| + uid = feed.uid + startdt = nil + enddt = nil + dt = nil + feed_cache = RecruitNewsFeedCache.where(uid: uid, start: startdt, end: enddt, date: dt) + if force_update + feed_cache = nil + else + feed_cache_old = feed_cache.all_of([{:invalid_date.ne=>nil},{:invalid_date.lte => Time.now}]).last + feed_cache.all_of([{:invalid_date.ne=>nil},{:invalid_date.lte => Time.now}]).destroy + count = feed_cache.count + if count > 1 + feed_cache.limit(count-1).destroy + end + feed_cache = feed_cache.first + anns = '' + end + if feed_cache.nil? + anns = feed.generate_one_cache_timeout(startdt: startdt,enddt: enddt,dt: dt,timeout: 20) + anns = (feed_cache_old.content rescue "") if anns.nil? + else + anns = feed_cache.content + end + request = Net::HTTP::Post.new('/xhr/feeds/notify_change', 'Content-Type' => 'application/json') + tmp_data = {'type'=>'update_all', 'uid'=> uid, 'data'=>anns} + request.body = tmp_data.to_json + feed.remote_urls.each do |remote_url| + uri = URI(remote_url) + http_req = Net::HTTP.new(uri.host, uri.port) + if remote_url.include?('https') + http_req.use_ssl = true + end + response = self.http_request( http_req , request ) + end + end + end + def self.notify_feed_delete(ids) + all_feeds = RecruitNewsFeed.all.select{|feed| feed.remote_urls.count != 0} + if all_feeds.count != 0 + tmp_data = {'type'=>'destroy'} + request = Net::HTTP::Post.new('/xhr/feeds/notify_change', 'Content-Type' => 'application/json') + all_feeds.each do |feed| + feed_uid = feed.uid + feed_cache = RecruitNewsFeedCache.where(:uid=>feed_uid).first + if feed_cache + tmp_data['uid'] = feed_uid + tmp_data['data'] = ids & JSON.parse(feed_cache.content)["announcements"].map{|a| a["id"]} + request.body = tmp_data.to_json + if tmp_data['data'].count != 0 + feed.remote_urls.each do |remote_url| + uri = URI(remote_url) + http_req = Net::HTTP.new(uri.host, uri.port) + if remote_url.include?('https') + http_req.use_ssl = true + end + response = self.http_request( http_req , request ) + end + end + end + end + end + end + def self.http_request(http, request) + response = http.request(request) + if response.code.to_i == 301 || response.code.to_i == 302 + location = response["location"] + new_uri = URI(location) + http = Net::HTTP.new(new_uri.host, new_uri.port) + if location.include?('https') + http.use_ssl = true + http.verify_mode = OpenSSL::SSL::VERIFY_PEER + end + request.instance_variable_set(:@path, new_uri.path) + response = self.http_request(http, request) + end + response + end +end diff --git a/app/models/recruit_news_cache.rb b/app/models/recruit_news_cache.rb new file mode 100644 index 0000000..696b58e --- /dev/null +++ b/app/models/recruit_news_cache.rb @@ -0,0 +1,7 @@ +class RecruitNewsCache + include Mongoid::Document + field :parent_id + field :filter_result + field :locale,type: String,default: 'zh_tw' + field :invalid_date, type: DateTime +end \ No newline at end of file diff --git a/app/models/recruit_news_custom_title.rb b/app/models/recruit_news_custom_title.rb new file mode 100644 index 0000000..f1f34c4 --- /dev/null +++ b/app/models/recruit_news_custom_title.rb @@ -0,0 +1,24 @@ +class RecruitNewsCustomTitle + include Mongoid::Document + include Mongoid::Timestamps + field :key + field :title, type: String, localize: true + KEYS = ['category', 'title','speaker','host','event_date','place','notes'] + def self.get_map + KEYS.map do |k| + s = self.where(key: k).first || self.create(key: k,title_translations: I18n.available_locales.map{|l| [l,I18n.with_locale(l){I18n.t("recruit_news.#{k}")}]}.to_h) + if s.title_translations.select{|k,v| v.include?("translation missing")}.length>0 + s.update_attributes(title_translations: I18n.available_locales.map{|l| [l,I18n.with_locale(l){I18n.t("recruit_news.#{k}")}]}.to_h) + end + s + end + end + def default_title + I18n.t("recruit_news.#{self.key}") + end + def self.get_trans(key) + tmp = TitleMap[key][I18n.locale] rescue I18n.t("recruit_news.#{key}") + tmp.blank? ? I18n.t("recruit_news.#{key}") : tmp + end + TitleMap = self.get_map.map{|v| [v.key,v.title_translations]}.to_h +end diff --git a/app/models/recruit_news_feed.rb b/app/models/recruit_news_feed.rb new file mode 100644 index 0000000..060dc0f --- /dev/null +++ b/app/models/recruit_news_feed.rb @@ -0,0 +1,123 @@ +class RecruitNewsFeed + include Mongoid::Document + include Mongoid::Timestamps + include Slug + + field :title, as: :slug_title, type: String, localize: true + field :tag_ids, type: Array, default: [] + field :category_ids, type: Array, default: [] + field :remote_urls, type: Array, default: [] + before_save do + RecruitNewsFeedCache.where(uid: self.uid).each do |cache| + cache.regenerate + end + end + def self.create_feed_cache(recruit_news=nil,recruit_news_feed=nil) + Thread.new do + if !recruit_news.nil? + self.where(:tag_ids.in => Array(recruit_news.tag_ids).collect{|v| v.to_s}).each do |recruit_news_feed| + uid = recruit_news_feed.uid + RecruitNewsFeedCache.where(:uid => uid).each do |cache| + cache.regenerate + end + end + elsif !recruit_news_feed.nil? + uid = recruit_news_feed.uid + RecruitNewsFeedCache.where(:uid => uid).each do |cache| + cache.regenerate + end + end + end + end + def generate_one_cache_timeout(startdt: nil,enddt: nil,dt: nil, base_url: nil, timeout: nil) + timeout = 100000 if timeout.nil? + begin + Timeout::timeout(timeout) { + feed_cache = nil + Thread.new do + feed_cache = self.generate_one_cache(startdt: startdt,enddt: enddt,dt: dt,base_url: base_url) + end + (1..(timeout.to_i+1)).each do + sleep(1) + break if !feed_cache.nil? + end + feed_cache.content + } + rescue=> e + puts [e,e.backtrace] + "" + end + end + def generate_one_cache(startdt: nil,enddt: nil,dt: nil, base_url: nil) + base_url = Site.first.root_url if base_url.nil? + uid = self.uid + bf = self + if !bf.nil? + tags = bf.tag_ids + categories = bf.category_ids + if !(categories.empty? && tags.empty?) + anns_before_filter = RecruitNews.any_of(I18n.available_locales.map{|v| {"title.#{v}"=>{"$nin"=>["", nil]}}}).is_approved_and_show + if !dt.nil? + dt = DateTime.parse(dt) + dtt = dt + 1.day + anns_before_filter = anns_before_filter.where(:postdate.gt => dt, :postdate.lt => dtt) + elsif !startdt.blank? && enddt.blank? + startdt = DateTime.parse(startdt) + enddt = DateTime.now + anns_before_filter = anns_before_filter.where(:postdate.gt => startdt, :postdate.lt => enddt) + elsif !startdt.blank? && !enddt.blank? + startdt = DateTime.parse(startdt) + enddt = DateTime.parse(enddt) + 1.day + anns_before_filter = anns_before_filter.where(:postdate.gt => startdt, :postdate.lt => enddt) + end + anns_before_filter = anns_before_filter.can_display_and_sorted + if !tags.empty? + anns_before_filter = anns_before_filter.filter_by_tags(tags) + end + if !categories.empty? + anns_before_filter = anns_before_filter.filter_by_categories(categories) + end + announcements = anns_before_filter.can_display_and_sorted + else + return + end + end + all_anns = [] + + first_postdate = anns_before_filter.open_in_future.limit(1).pluck(:postdate)[0] + first_deadline = nil + cat_ids = announcements.collect{|a| a.category_id.blank? ? nil : a.category_id.to_s}.compact.uniq + tag_ids = announcements.collect{|a| a.tag_ids.collect{|v| v.blank? ? nil : v.to_s}}.flatten.compact.uniq + tag_names = tag_ids.map{|tag_id| Tag.find(tag_id).name_translations rescue nil}.compact + category_titles = cat_ids.map{|cat_id| Category.find(cat_id).title_translations rescue nil}.compact + basic_query = {:module => 'recruit_news_mod',:enabled_for=>I18n.locale} + if !cat_ids.blank? + query = basic_query.merge({:categories.all => cat_ids}) + else + query = basic_query.clone + end + if !tag_ids.blank? + query = query.merge({:tags.all => tag_ids}) + end + page = Page.where(query).first || Page.where(basic_query).first + more_url = page ? page.get_url : nil + + announcements.each do |anns| + deadline = anns.deadline + if !deadline.blank? + if first_deadline.nil? || first_deadline>deadline + first_deadline = deadline + end + end + a = anns.get_data(more_url, base_url, cat_ids, tag_ids) + all_anns << a + end + invalid_date = [first_postdate,first_deadline].compact.sort[0] + anns = { + "recruit_news_mods" => all_anns, + "tags" => tag_names, + "categories" => category_titles + }.to_json + feed_cache = RecruitNewsFeedCache.create(uid: uid,content: anns,start: startdt,end: enddt,date: dt,invalid_date: invalid_date) + end +end \ No newline at end of file diff --git a/app/models/recruit_news_feed_cache.rb b/app/models/recruit_news_feed_cache.rb new file mode 100644 index 0000000..642cba7 --- /dev/null +++ b/app/models/recruit_news_feed_cache.rb @@ -0,0 +1,34 @@ +class RecruitNewsFeedCache + include Mongoid::Document + include Mongoid::Timestamps + + field :content, type: String, default: '' + field :uid + field :start + field :end + field :date + field :invalid_date, type: DateTime + def self.regenerate_all + caches = self.all.to_a + time_now = Time.now + caches.each do |cache| + if cache.invalid_date && cache.invalid_date <= time_now + cache.destroy + else + cache.regenerate + end + end + uids = RecruitNewsFeed.all.pluck(:uid) - caches.collect(&:uid) + RecruitNewsFeed.where(:uid.in=> uids).each do |feed| + feed.generate_one_cache() + end + end + def regenerate + st = self.start + et = self.end + dt = self.date + uid = self.uid + RecruitNewsFeed.where(uid: uid).each{|v| v.generate_one_cache(startdt: st,enddt: et,dt: dt)} rescue nil + self.destroy + end +end \ No newline at end of file diff --git a/app/models/recruit_news_file.rb b/app/models/recruit_news_file.rb new file mode 100644 index 0000000..0126bcf --- /dev/null +++ b/app/models/recruit_news_file.rb @@ -0,0 +1,49 @@ +# encoding: utf-8 +class RecruitNewsFile + + include Mongoid::Document + include Mongoid::Timestamps + + mount_uploader :file, AssetUploader + + field :description, localize: true + field :title, localize: true + field :choose_lang, :type => Array, :default => ["en","zh_tw"] + field :privacy_type, type: String, default: 'public' + field :position, type: Integer, default: 0 + default_scope ->{ order_by(position: :asc) } + belongs_to :recruit_news + def self.to_fronted(locale=I18n.locale) + self.all.map{|file| file.to_fronted(locale)}.compact rescue [] + end + def to_fronted(locale=I18n.locale) + file = self + (file.enabled_for?(locale) && !file[:file].blank?) ? { "file_url" => "/xhr/recruit_news/file/#{file.id}/#{file['file']}" + "\" title=\"#{file.file_title}", + "file_title" => (file.title.blank? ? URI.unescape(File.basename(file.file.path)) : file.title rescue '') + } : nil rescue nil + end + + def file_title + if self.description.present? + return self.description + elsif self.title.present? + return self.title + else + return File.basename(self.file.path) + end + end + def enabled_for?(lang) + if lang.nil? + return true + else + return self.choose_lang.include?(lang) + end + end + def can_access?(user) + if user.nil? && self.privacy_type == 'logged_in' + return false + else + return true + end + end +end diff --git a/app/models/recruit_news_link.rb b/app/models/recruit_news_link.rb new file mode 100644 index 0000000..eee8f99 --- /dev/null +++ b/app/models/recruit_news_link.rb @@ -0,0 +1,25 @@ +# encoding: utf-8 +require 'uri' + +class RecruitNewsLink + include Mongoid::Document + include Mongoid::Timestamps + + field :url + field :title, localize: true + + belongs_to :recruit_news + + before_validation :add_http + + validates :url, :presence => true, :format => /\A(http|https):\/\/(([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5})|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))(:[0-9]{1,5})?(\/.*)?\Z/i + + protected + + def add_http + unless self.url[/^http:\/\//] || self.url[/^https:\/\//] + self.url = 'http://' + self.url + end + end + +end \ No newline at end of file diff --git a/app/models/recruit_news_setting.rb b/app/models/recruit_news_setting.rb new file mode 100644 index 0000000..ef62176 --- /dev/null +++ b/app/models/recruit_news_setting.rb @@ -0,0 +1,131 @@ +class RecruitNewsSetting + include Mongoid::Document + include Mongoid::Timestamps + field :carousel_image_type, :type => Integer, :default => 0 # 0: carousel, 1: album + field :carousel_image_width, type: String, :default => "75%" + field :top_limit, type: Integer, :default => 0 + field :pro_enabled, type: Boolean, :default => false + field :approvers, type: Array, :default => [] + field :email_to, type: Array, :default => ["admins","managers","approvers"] + field :is_display_edit_only, type: Boolean, :default => false + field :only_manager_can_edit_status, type: Boolean, :default => false + field :including_day_of_the_week, type: Boolean, default: true + field :including_time, type: Boolean, default: true + field :hour_clock_24, type: Boolean, default: true + field :enable_manually_sort, type: Boolean, default: false + field :is_postdate_sort_first, type: Boolean, default: false + + field :migrate_flag, type: Array, default: [] + + has_many :recruit_news_status_settings, :autosave => true, :dependent => :destroy + accepts_nested_attributes_for :recruit_news_status_settings, :allow_destroy => true + + before_save do + can_update_shared_hash = (defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash) + if self.including_day_of_the_week_changed? || self.including_time_changed? || self.hour_clock_24_changed? + @need_update_recruit_news = true + end + if self.enable_manually_sort_changed? && self.enable_manually_sort + RecruitNews.index({approved: -1,is_hidden: 1,is_preview: 1, is_top: -1,sort_number: 1,postdate: -1,_id: -1,deadline: -1}, { unique: false, background: true }) + RecruitNews.create_indexes + if can_update_shared_hash + OrbitHelper::SharedMutex.synchronize do + OrbitHelper::SharedHash["recruit_news_mod"][:enable_manually_sort] = self.enable_manually_sort + end + end + @need_update_recruit_news = true + end + end + after_save do + if @need_update_recruit_news + @need_update_recruit_news = false + Thread.new do + RecruitNewsCache.all.delete + end + end + end + def self.check_limit_for_user(user_id, b_id = nil) + limit = self.first.top_limit rescue 0 + return true if limit == 0 + count = Bulletin.where(:is_top => true, :create_user_id => user_id, :id.ne => b_id).count + return count < limit + end + + def self.is_pro? + self.first.pro_enabled rescue false + end + def self.event_date_default_format + setting = self.first + setting.event_date_default_format + end + def event_date_default_format + datetime_format = "%Y-%m-%d" + if self.including_day_of_the_week + datetime_format += " %a" + end + if self.including_time + if self.hour_clock_24 + datetime_format += " %H:%M" + else + datetime_format += " %I:%M %P" + end + end + datetime_format + end + def get_weekday(w) + trans = RecruitNews::Week_day_trans + if trans.keys.include?(I18n.locale) + trans[I18n.locale][w] + else + trans[:en][w] + end + end + def custom_strftime(dt, datetime_format) + if dt + dt.strftime(datetime_format.sub("%a","%%a")).sub("%a",get_weekday(dt.wday)) + else + "" + end + end + def event_date_format + @event_date_format ||= self.event_date_default_format + end + def self.event_time_formated_for_frontend(st,ed) + self.first.event_time_formated_for_frontend(st,ed) + end + def event_time_formated_for_frontend(st,ed) + st,ed = self.event_time_formated(st,ed).split("~") + if st.blank? + st = "#{st}" + end + if ed.nil? + st + else + ed = "#{ed}" + "#{st} ~ #{ed}" + end + end + def event_time_formated(st,ed) + s = st + e = ed + if s.blank? && e.blank? + "" + elsif e.blank? + custom_strftime(s, self.event_date_format) + elsif s.blank? + "~ " + custom_strftime(e, self.event_date_format) + else + parse_format = self.event_date_format + if s.to_date == e.to_date + parse_format_arr = parse_format.split(/(%d %a|%d) /) + parse_format_arr = parse_format_arr[0..-2].join(""), parse_format_arr[-1] + date_str = custom_strftime(s, parse_format_arr[0]) + s_time = s.strftime(parse_format_arr[1]) + e_time = e.strftime(parse_format_arr[1]) + "#{date_str} #{s_time} ~ #{e_time}" + else + custom_strftime(s, self.event_date_format) + " ~ " + custom_strftime(e, self.event_date_format) + end + end + end +end \ No newline at end of file diff --git a/app/models/recruit_news_status_setting.rb b/app/models/recruit_news_status_setting.rb new file mode 100644 index 0000000..1a85574 --- /dev/null +++ b/app/models/recruit_news_status_setting.rb @@ -0,0 +1,7 @@ +class RecruitNewsStatusSetting + include Mongoid::Document + field :role_id + field :status + field :top_limit + belongs_to :recruit_news_setting +end \ No newline at end of file diff --git a/app/views/.keep b/app/views/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/views/admin/recruit_news/_approval_modal.html.erb b/app/views/admin/recruit_news/_approval_modal.html.erb new file mode 100644 index 0000000..3113d47 --- /dev/null +++ b/app/views/admin/recruit_news/_approval_modal.html.erb @@ -0,0 +1,122 @@ + + \ No newline at end of file diff --git a/app/views/admin/recruit_news/_edit_feed_form.html.erb b/app/views/admin/recruit_news/_edit_feed_form.html.erb new file mode 100644 index 0000000..4420f6d --- /dev/null +++ b/app/views/admin/recruit_news/_edit_feed_form.html.erb @@ -0,0 +1,61 @@ +<%= form_for @recruit_news_feed, url: admin_recruit_news_updatefeed_path(:id => @recruit_news_feed.id), html: {class: "form-horizontal main-forms"} do |f| %> +
+ <% @site_in_use_locales.each do |locale| %> + <%= f.fields_for :title_translations do |f| %> +
+ +
+ <%= f.text_field locale, data: {"fv-validation" => "required;","fv-messages" => "Cannot be empty.;"}, value: (@recruit_news_feed.title_translations[locale.to_s] rescue nil) %> +
+
+ <% end %> + <% end %> +
+
+

<%=t(:tags)%>

+
+
+ <% @module_app.tags.each do |tag| %> + + <% end %> +
+
+
+
+

<%=t(:category)%>

+
+
+ <% @module_app.categories.each do |category| %> + + <% end %> +
+
+
+
+<% end %> + + \ No newline at end of file diff --git a/app/views/admin/recruit_news/_edit_sort.html.erb b/app/views/admin/recruit_news/_edit_sort.html.erb new file mode 100644 index 0000000..0310798 --- /dev/null +++ b/app/views/admin/recruit_news/_edit_sort.html.erb @@ -0,0 +1,38 @@ +
+
"),o=r.header[e];return o&&t.each(o.split(" "),function(e){e>0&&a.append("");var o;t.each(this.split(","),function(e,i){if("title"==i)a.append("

 

"),o&&o.addClass(v+"-corner-right"),o=null;else{var s;if(n[i]?s=n[i]:De[i]&&(s=function(){u.removeClass(v+"-state-hover"),n.changeView(i)}),s){var c=r.theme?J(r.buttonIcons,i):null,l=J(r.buttonText,i),u=t(""+(c?""+"":l)+"").click(function(){u.hasClass(v+"-state-disabled")||s()}).mousedown(function(){u.not("."+v+"-state-active").not("."+v+"-state-disabled").addClass(v+"-state-down")}).mouseup(function(){u.removeClass(v+"-state-down")}).hover(function(){u.not("."+v+"-state-active").not("."+v+"-state-disabled").addClass(v+"-state-hover")},function(){u.removeClass(v+"-state-hover").removeClass(v+"-state-down")}).appendTo(a);U(u),o||u.addClass(v+"-corner-left"),o=u}}}),o&&o.addClass(v+"-corner-right")}),a}function s(t){h.find("h2").html(t)}function c(t){h.find("span.fc-button-"+t).addClass(v+"-state-active")}function l(t){h.find("span.fc-button-"+t).removeClass(v+"-state-active")}function u(t){h.find("span.fc-button-"+t).addClass(v+"-state-disabled")}function f(t){h.find("span.fc-button-"+t).removeClass(v+"-state-disabled")}var d=this;d.render=a,d.destroy=o,d.updateTitle=s,d.activateButton=c,d.deactivateButton=l,d.disableButton=u,d.enableButton=f;var v,h=t([])}function o(n,r){function a(t,e){return!S||S>t||e>E}function o(t,e){S=t,E=e,W=[];var n=++F,r=z.length;R=r;for(var a=0;r>a;a++)i(z[a],n)}function i(e,r){s(e,function(a){if(r==F){if(a){n.eventDataTransform&&(a=t.map(a,n.eventDataTransform)),e.eventDataTransform&&(a=t.map(a,e.eventDataTransform));for(var o=0;a.length>o;o++)a[o].source=e,b(a[o]);W=W.concat(a)}R--,R||k(W)}})}function s(r,a){var o,i,c=we.sourceFetchers;for(o=0;c.length>o;o++){if(i=c[o](r,S,E,a),i===!0)return;if("object"==typeof i)return s(i,a),e}var l=r.events;if(l)t.isFunction(l)?(p(),l(d(S),d(E),function(t){a(t),y()})):t.isArray(l)?a(l):a();else{var u=r.url;if(u){var f=r.success,v=r.error,h=r.complete,g=t.extend({},r.data||{}),m=K(r.startParam,n.startParam),b=K(r.endParam,n.endParam);m&&(g[m]=Math.round(+S/1e3)),b&&(g[b]=Math.round(+E/1e3)),p(),t.ajax(t.extend({},Me,r,{data:g,success:function(e){e=e||[];var n=G(f,this,arguments);t.isArray(n)&&(e=n),a(e)},error:function(){G(v,this,arguments),a()},complete:function(){G(h,this,arguments),y()}}))}else a()}}function c(t){t=l(t),t&&(R++,i(t,F))}function l(n){return t.isFunction(n)||t.isArray(n)?n={events:n}:"string"==typeof n&&(n={url:n}),"object"==typeof n?(w(n),z.push(n),n):e}function u(e){z=t.grep(z,function(t){return!D(t,e)}),W=t.grep(W,function(t){return!D(t.source,e)}),k(W)}function f(t){var e,n,r=W.length,a=T().defaultEventEnd,o=t.start-t._start,i=t.end?t.end-(t._end||a(t)):0;for(e=0;r>e;e++)n=W[e],n._id==t._id&&n!=t&&(n.start=new Date(+n.start+o),n.end=t.end?n.end?new Date(+n.end+i):new Date(+a(n)+i):null,n.title=t.title,n.url=t.url,n.allDay=t.allDay,n.className=t.className,n.editable=t.editable,n.color=t.color,n.backgroudColor=t.backgroudColor,n.borderColor=t.borderColor,n.textColor=t.textColor,b(n));b(t),k(W)}function v(t,e){b(t),t.source||(e&&(H.events.push(t),t.source=H),W.push(t)),k(W)}function h(e){if(e){if(!t.isFunction(e)){var n=e+"";e=function(t){return t._id==n}}W=t.grep(W,e,!0);for(var r=0;z.length>r;r++)t.isArray(z[r].events)&&(z[r].events=t.grep(z[r].events,e,!0))}else{W=[];for(var r=0;z.length>r;r++)t.isArray(z[r].events)&&(z[r].events=[])}k(W)}function g(e){return t.isFunction(e)?t.grep(W,e):e?(e+="",t.grep(W,function(t){return t._id==e})):W}function p(){N++||x("loading",null,!0)}function y(){--N||x("loading",null,!1)}function b(t){var r=t.source||{},a=K(r.ignoreTimezone,n.ignoreTimezone);t._id=t._id||(t.id===e?"_fc"+Ce++:t.id+""),t.date&&(t.start||(t.start=t.date),delete t.date),t._start=d(t.start=m(t.start,a)),t.end=m(t.end,a),t.end&&t.end<=t.start&&(t.end=null),t._end=t.end?d(t.end):null,t.allDay===e&&(t.allDay=K(r.allDayDefault,n.allDayDefault)),t.className?"string"==typeof t.className&&(t.className=t.className.split(/\s+/)):t.className=[]}function w(t){t.className?"string"==typeof t.className&&(t.className=t.className.split(/\s+/)):t.className=[];for(var e=we.sourceNormalizers,n=0;e.length>n;n++)e[n](t)}function D(t,e){return t&&e&&M(t)==M(e)}function M(t){return("object"==typeof t?t.events||t.url:"")||t}var C=this;C.isFetchNeeded=a,C.fetchEvents=o,C.addEventSource=c,C.removeEventSource=u,C.updateEvent=f,C.renderEvent=v,C.removeEvents=h,C.clientEvents=g,C.normalizeEvent=b;for(var S,E,x=C.trigger,T=C.getView,k=C.reportEvents,H={events:[]},z=[H],F=0,R=0,N=0,W=[],A=0;r.length>A;A++)l(r[A])}function i(t,e,n){return t.setFullYear(t.getFullYear()+e),n||f(t),t}function s(t,e,n){if(+t){var r=t.getMonth()+e,a=d(t);for(a.setDate(1),a.setMonth(r),t.setMonth(r),n||f(t);t.getMonth()!=a.getMonth();)t.setDate(t.getDate()+(a>t?1:-1))}return t}function c(t,e,n){if(+t){var r=t.getDate()+e,a=d(t);a.setHours(9),a.setDate(r),t.setDate(r),n||f(t),l(t,a)}return t}function l(t,e){if(+t)for(;t.getDate()!=e.getDate();)t.setTime(+t+(e>t?1:-1)*xe)}function u(t,e){return t.setMinutes(t.getMinutes()+e),t}function f(t){return t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0),t}function d(t,e){return e?f(new Date(+t)):new Date(+t)}function v(){var t,e=0;do t=new Date(1970,e++,1);while(t.getHours());return t}function h(t,e,n){for(e=e||1;!t.getDay()||n&&1==t.getDay()||!n&&6==t.getDay();)c(t,e);return t}function g(t,e){return Math.round((d(t,!0)-d(e,!0))/Ee)}function p(t,n,r,a){n!==e&&n!=t.getFullYear()&&(t.setDate(1),t.setMonth(0),t.setFullYear(n)),r!==e&&r!=t.getMonth()&&(t.setDate(1),t.setMonth(r)),a!==e&&t.setDate(a)}function m(t,n){return"object"==typeof t?t:"number"==typeof t?new Date(1e3*t):"string"==typeof t?t.match(/^\d+(\.\d+)?$/)?new Date(1e3*parseFloat(t)):(n===e&&(n=!0),y(t,n)||(t?new Date(t):null)):null}function y(t,e){var n=t.match(/^([0-9]{4})(-([0-9]{2})(-([0-9]{2})([T ]([0-9]{2}):([0-9]{2})(:([0-9]{2})(\.([0-9]+))?)?(Z|(([-+])([0-9]{2})(:?([0-9]{2}))?))?)?)?)?$/);if(!n)return null;var r=new Date(n[1],0,1);if(e||!n[13]){var a=new Date(n[1],0,1,9,0);n[3]&&(r.setMonth(n[3]-1),a.setMonth(n[3]-1)),n[5]&&(r.setDate(n[5]),a.setDate(n[5])),l(r,a),n[7]&&r.setHours(n[7]),n[8]&&r.setMinutes(n[8]),n[10]&&r.setSeconds(n[10]),n[12]&&r.setMilliseconds(1e3*Number("0."+n[12])),l(r,a)}else if(r.setUTCFullYear(n[1],n[3]?n[3]-1:0,n[5]||1),r.setUTCHours(n[7]||0,n[8]||0,n[10]||0,n[12]?1e3*Number("0."+n[12]):0),n[14]){var o=60*Number(n[16])+(n[18]?Number(n[18]):0);o*="-"==n[15]?1:-1,r=new Date(+r+1e3*60*o)}return r}function b(t){if("number"==typeof t)return 60*t;if("object"==typeof t)return 60*t.getHours()+t.getMinutes();var e=t.match(/(\d+)(?::(\d+))?\s*(\w+)?/);if(e){var n=parseInt(e[1],10);return e[3]&&(n%=12,"p"==e[3].toLowerCase().charAt(0)&&(n+=12)),60*n+(e[2]?parseInt(e[2],10):0)}}function w(t,e,n){return D(t,null,e,n)}function D(t,e,n,r){r=r||ye;var a,o,i,s,c=t,l=e,u=n.length,f="";for(a=0;u>a;a++)if(o=n.charAt(a),"'"==o){for(i=a+1;u>i;i++)if("'"==n.charAt(i)){c&&(f+=i==a+1?"'":n.substring(a+1,i),a=i);break}}else if("("==o){for(i=a+1;u>i;i++)if(")"==n.charAt(i)){var d=w(c,n.substring(a+1,i),r);parseInt(d.replace(/\D/,""),10)&&(f+=d),a=i;break}}else if("["==o){for(i=a+1;u>i;i++)if("]"==n.charAt(i)){var v=n.substring(a+1,i),d=w(c,v,r);d!=w(l,v,r)&&(f+=d),a=i;break}}else if("{"==o)c=e,l=t;else if("}"==o)c=t,l=e;else{for(i=u;i>a;i--)if(s=ke[n.substring(a,i)]){c&&(f+=s(c,r)),a=i-1;break}i==a&&c&&(f+=o)}return f}function M(t){var e,n=new Date(t.getTime());return n.setDate(n.getDate()+4-(n.getDay()||7)),e=n.getTime(),n.setMonth(0),n.setDate(1),Math.floor(Math.round((e-n)/864e5)/7)+1}function C(t){return t.end?S(t.end,t.allDay):c(d(t.start),1)}function S(t,e){return t=d(t),e||t.getHours()||t.getMinutes()?c(t,1):f(t)}function E(t,e){return 100*(e.msLength-t.msLength)+(t.event.start-e.event.start)}function x(t,e){return t.end>e.start&&t.starta;a++)o=t[a],i=o.start,s=e[a],s>n&&r>i&&(n>i?(c=d(n),u=!1):(c=i,u=!0),s>r?(l=d(r),f=!1):(l=s,f=!0),v.push({event:o,start:c,end:l,isStart:u,isEnd:f,msLength:l-c}));return v.sort(E)}function k(t){var e,n,r,a,o,i=[],s=t.length;for(e=0;s>e;e++){for(n=t[e],r=0;;){if(a=!1,i[r])for(o=0;i[r].length>o;o++)if(x(i[r][o],n)){a=!0;break}if(!a)break;r++}i[r]?i[r].push(n):i[r]=[n]}return i}function H(n,r,a){n.unbind("mouseover").mouseover(function(n){for(var o,i,s,c=n.target;c!=this;)o=c,c=c.parentNode;(i=o._fci)!==e&&(o._fci=e,s=r[i],a(s.event,s.element,s),t(n.target).trigger(n)),n.stopPropagation()})}function z(e,n,r){for(var a,o=0;e.length>o;o++)a=t(e[o]),a.width(Math.max(0,n-R(a,r)))}function F(e,n,r){for(var a,o=0;e.length>o;o++)a=t(e[o]),a.height(Math.max(0,n-L(a,r)))}function R(t,e){return N(t)+A(t)+(e?W(t):0)}function N(e){return(parseFloat(t.css(e[0],"paddingLeft",!0))||0)+(parseFloat(t.css(e[0],"paddingRight",!0))||0)}function W(e){return(parseFloat(t.css(e[0],"marginLeft",!0))||0)+(parseFloat(t.css(e[0],"marginRight",!0))||0)}function A(e){return(parseFloat(t.css(e[0],"borderLeftWidth",!0))||0)+(parseFloat(t.css(e[0],"borderRightWidth",!0))||0)}function L(t,e){return _(t)+B(t)+(e?O(t):0)}function _(e){return(parseFloat(t.css(e[0],"paddingTop",!0))||0)+(parseFloat(t.css(e[0],"paddingBottom",!0))||0)}function O(e){return(parseFloat(t.css(e[0],"marginTop",!0))||0)+(parseFloat(t.css(e[0],"marginBottom",!0))||0)}function B(e){return(parseFloat(t.css(e[0],"borderTopWidth",!0))||0)+(parseFloat(t.css(e[0],"borderBottomWidth",!0))||0)}function q(t,e){e="number"==typeof e?e+"px":e,t.each(function(t,n){n.style.cssText+=";min-height:"+e+";_height:"+e})}function I(){}function Y(t,e){return t-e}function j(t){return Math.max.apply(Math,t)}function P(t){return(10>t?"0":"")+t}function J(t,n){if(t[n]!==e)return t[n];for(var r,a=n.split(/(?=[A-Z])/),o=a.length-1;o>=0;o--)if(r=t[a[o].toLowerCase()],r!==e)return r;return t[""]}function V(t){return t.replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
")}function X(t){return t.id+"/"+t.className+"/"+t.style.cssText.replace(/(^|;)\s*(top|left|width|height)\s*:[^;]*/gi,"")}function U(t){t.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return!1})}function Z(t){t.children().removeClass("fc-first fc-last").filter(":first-child").addClass("fc-first").end().filter(":last-child").addClass("fc-last")}function $(t,e){t.each(function(t,n){n.className=n.className.replace(/^fc-\w*/,"fc-"+Se[e.getDay()])})}function Q(t,e){var n=t.source||{},r=t.color,a=n.color,o=e("eventColor"),i=t.backgroundColor||r||n.backgroundColor||a||e("eventBackgroundColor")||o,s=t.borderColor||r||n.borderColor||a||e("eventBorderColor")||o,c=t.textColor||n.textColor||e("eventTextColor"),l=[];return i&&l.push("background-color:"+i),s&&l.push("border-color:"+s),c&&l.push("color:"+c),l.join(";")}function G(e,n,r){if(t.isFunction(e)&&(e=[e]),e){var a,o;for(a=0;e.length>a;a++)o=e[a].apply(n,r)||o;return o}}function K(){for(var t=0;arguments.length>t;t++)if(arguments[t]!==e)return arguments[t]}function te(t,e){function n(t,e){e&&(s(t,e),t.setDate(1));var n=d(t,!0);n.setDate(1);var l=s(d(n),1),u=d(n),f=d(l),v=a("firstDay"),g=a("weekends")?0:1;g&&(h(u),h(f,-1,!0)),c(u,-((u.getDay()-Math.max(v,g)+7)%7)),c(f,(7-f.getDay()+Math.max(v,g))%7);var p=Math.round((f-u)/(7*Ee));"fixed"==a("weekMode")&&(c(f,7*(6-p)),p=6),r.title=i(n,a("titleFormat")),r.start=n,r.end=l,r.visStart=u,r.visEnd=f,o(p,g?5:7,!0)}var r=this;r.render=n,re.call(r,t,e,"month");var a=r.opt,o=r.renderBasic,i=e.formatDate}function ee(t,e){function n(t,e){e&&c(t,7*e);var n=c(d(t),-((t.getDay()-a("firstDay")+7)%7)),s=c(d(n),7),l=d(n),u=d(s),f=a("weekends");f||(h(l),h(u,-1,!0)),r.title=i(l,c(d(u),-1),a("titleFormat")),r.start=n,r.end=s,r.visStart=l,r.visEnd=u,o(1,f?7:5,!1)}var r=this;r.render=n,re.call(r,t,e,"basicWeek");var a=r.opt,o=r.renderBasic,i=e.formatDates}function ne(t,e){function n(t,e){e&&(c(t,e),a("weekends")||h(t,0>e?-1:1)),r.title=i(t,a("titleFormat")),r.start=r.visStart=d(t,!0),r.end=r.visEnd=c(d(r.start),1),o(1,1,!1)}var r=this;r.render=n,re.call(r,t,e,"basicDay");var a=r.opt,o=r.renderBasic,i=e.formatDate}function re(e,n,r){function a(t,e,n){ne=t,re=e,o();var r=!P;r?i():Te(),s(n)}function o(){ce=Ee("isRTL"),ce?(le=-1,fe=re-1):(le=1,fe=0),pe=Ee("firstDay"),ye=Ee("weekends")?0:1,be=Ee("theme")?"ui":"fc",we=Ee("columnFormat"),De=Ee("weekNumbers"),Me=Ee("weekNumberTitle"),Ce="iso"!=Ee("weekNumberCalculation")?"w":"W"}function i(){Q=t("
").appendTo(e)}function s(n){var r,a,o,i,s="",c=be+"-widget-header",l=be+"-widget-content",u=B.start.getMonth(),d=f(new Date);for(s+="",De&&(s+="",r=0;ne>r;r++){for(s+="",De&&(s+=""),a=0;re>a;a++)o=F(r,a),i=["fc-day","fc-"+Se[o.getDay()],l],o.getMonth()!=u&&i.push("fc-other-month"),+o==+d&&(i.push("fc-today"),i.push(be+"-state-highlight")),s+="";s+=""}s+="
"),r=0;re>r;r++)o=F(0,r),s+="";for(s+="
"+"
"+"
"+"
",n&&(s+="
"+o.getDate()+"
"),s+="
 
",_(),I&&I.remove(),I=t(s).appendTo(e),Y=I.find("thead"),j=Y.find(".fc-day-header"),P=I.find("tbody"),J=P.find("tr"),V=P.find(".fc-day"),X=J.find("td:first-child"),$=J.eq(0).find(".fc-day-content > div"),Z(Y.add(Y.find("tr"))),Z(J),J.eq(0).addClass("fc-first"),J.filter(":last").addClass("fc-last"),De&&Y.find(".fc-week-number").text(Me),j.each(function(e,n){var r=R(e);t(n).text(Fe(r,we))}),De&&P.find(".fc-week-number > div").each(function(e,n){var r=F(e,0);t(n).text(Fe(r,Ce))}),V.each(function(e,n){var r=R(e);xe("dayRender",B,r,t(n))}),v(V)}function l(e){K=e;var n,r,a,o=K-Y.height();"variable"==Ee("weekMode")?n=r=Math.floor(o/(1==ne?2:6)):(n=Math.floor(o/ne),r=o-n*(ne-1)),X.each(function(e,o){ne>e&&(a=t(o),q(a.find("> div"),(e==ne-1?r:n)-L(a)))}),O()}function u(t){G=t,se.clear(),ee=0,De&&(ee=Y.find("th.fc-week-number").outerWidth()),te=Math.floor((G-ee)/re),z(j.slice(0,-1),te)}function v(t){t.click(h).mousedown(ze)}function h(e){if(!Ee("selectable")){var n=y(t(this).data("date"));xe("dayClick",this,n,!0,e)}}function p(t,e,n){n&&oe.build();for(var r=d(B.visStart),a=c(d(r),re),o=0;ne>o;o++){var i=new Date(Math.max(r,t)),s=new Date(Math.min(a,e));if(s>i){var l,u;ce?(l=g(s,r)*le+fe+1,u=g(i,r)*le+fe+1):(l=g(i,r),u=g(s,r)),v(m(o,l,o,u-1))}c(r,7),c(a,7)}}function m(t,n,r,a){var o=oe.rect(t,n,r,a,e);return ke(o,e)}function b(t){return d(t)}function w(t,e){p(t,c(d(e),1),!0)}function D(){He()}function M(t,e,n){var r=k(t),a=V[r.row*re+r.col];xe("dayClick",a,t,e,n)}function C(t,e){ie.start(function(t){He(),t&&m(t.row,t.col,t.row,t.col)},e)}function S(t,e,n){var r=ie.stop();if(He(),r){var a=H(r);xe("drop",t,a,!0,e,n)}}function E(t){return d(t.start)}function x(t){return se.left(t)}function T(t){return se.right(t)}function k(t){return{row:Math.floor(g(t,B.visStart)/7),col:N(t.getDay())}}function H(t){return F(t.row,t.col)}function F(t,e){return c(d(B.visStart),7*t+e*le+fe)}function R(t){return F(Math.floor(t/re),t%re)}function N(t){return(t-Math.max(pe,ye)+re)%re*le+fe}function W(t){return J.eq(t)}function A(){var t=0;return De&&(t+=ee),{left:t,right:G}}function _(){q(e,e.height())}function O(){q(e,1)}var B=this;B.renderBasic=a,B.setHeight=l,B.setWidth=u,B.renderDayOverlay=p,B.defaultSelectionEnd=b,B.renderSelection=w,B.clearSelection=D,B.reportDayClick=M,B.dragStart=C,B.dragStop=S,B.defaultEventEnd=E,B.getHoverListener=function(){return ie},B.colContentLeft=x,B.colContentRight=T,B.dayOfWeekCol=N,B.dateCell=k,B.cellDate=H,B.cellIsAllDay=function(){return!0},B.allDayRow=W,B.allDayBounds=A,B.getRowCnt=function(){return ne},B.getColCnt=function(){return re},B.getColWidth=function(){return te},B.getDaySegmentContainer=function(){return Q},ue.call(B,e,n,r),ve.call(B),de.call(B),ae.call(B);var I,Y,j,P,J,V,X,$,Q,G,K,te,ee,ne,re,oe,ie,se,ce,le,fe,pe,ye,be,we,De,Me,Ce,Ee=B.opt,xe=B.trigger,Te=B.clearEvents,ke=B.renderOverlay,He=B.clearOverlays,ze=B.daySelectionMousedown,Fe=n.formatDate;U(e.addClass("fc-grid")),oe=new he(function(e,n){var r,a,o;j.each(function(e,i){r=t(i),a=r.offset().left,e&&(o[1]=a),o=[a],n[e]=o}),o[1]=a+r.outerWidth(),J.each(function(n,i){ne>n&&(r=t(i),a=r.offset().top,n&&(o[1]=a),o=[a],e[n]=o)}),o[1]=a+r.outerHeight()}),ie=new ge(oe),se=new me(function(t){return $.eq(t)})}function ae(){function e(t,e){v(t),x(r(t),e),l("eventAfterAllRender")}function n(){h(),b().empty()}function r(e){var n,r,a,o,s,l,u=S(),f=E(),v=d(i.visStart),h=c(d(v),f),g=t.map(e,C),p=[];for(n=0;u>n;n++){for(r=k(T(e,g,v,h)),a=0;r.length>a;a++)for(o=r[a],s=0;o.length>s;s++)l=o[s],l.row=n,l.level=a,p.push(l);c(v,7),c(h,7)}return p}function a(t,e,n){u(t)&&o(t,e),n.isEnd&&f(t)&&H(t,e,n),g(t,e)}function o(t,e){var n,r=w();e.draggable({zIndex:9,delay:50,opacity:s("dragOpacity"),revertDuration:s("dragRevertDuration"),start:function(a,o){l("eventDragStart",e,t,a,o),m(t,e),r.start(function(r,a,o,i){e.draggable("option","revert",!r||!o&&!i),M(),r?(n=7*o+i*(s("isRTL")?-1:1),D(c(d(t.start),n),c(C(t),n))):n=0},a,"drag")},stop:function(a,o){r.stop(),M(),l("eventDragStop",e,t,a,o),n?y(this,t,n,0,t.allDay,a,o):(e.css("filter",""),p(t,e))}})}var i=this;i.renderEvents=e,i.compileDaySegs=r,i.clearEvents=n,i.bindDaySeg=a,fe.call(i);var s=i.opt,l=i.trigger,u=i.isEventDraggable,f=i.isEventResizable,v=i.reportEvents,h=i.reportEventClear,g=i.eventElementHandlers,p=i.showEvents,m=i.hideEvents,y=i.eventDrop,b=i.getDaySegmentContainer,w=i.getHoverListener,D=i.renderDayOverlay,M=i.clearOverlays,S=i.getRowCnt,E=i.getColCnt,x=i.renderDaySegs,H=i.resizableDayEvent}function oe(t,e){function n(t,e){e&&c(t,7*e);var n=c(d(t),-((t.getDay()-a("firstDay")+7)%7)),s=c(d(n),7),l=d(n),u=d(s),f=a("weekends");f||(h(l),h(u,-1,!0)),r.title=i(l,c(d(u),-1),a("titleFormat")),r.start=n,r.end=s,r.visStart=l,r.visEnd=u,o(f?7:5)}var r=this;r.render=n,se.call(r,t,e,"agendaWeek");var a=r.opt,o=r.renderAgenda,i=e.formatDates}function ie(t,e){function n(t,e){e&&(c(t,e),a("weekends")||h(t,0>e?-1:1));var n=d(t,!0),s=c(d(n),1);r.title=i(t,a("titleFormat")),r.start=r.visStart=n,r.end=r.visEnd=s,o(1)}var r=this;r.render=n,se.call(r,t,e,"agendaDay");var a=r.opt,o=r.renderAgenda,i=e.formatDate}function se(n,r,a){function o(t){Le=t,i(),te?nn():s(),l()}function i(){Ye=tn("theme")?"ui":"fc",Pe=tn("weekends")?0:1,je=tn("firstDay"),(Je=tn("isRTL"))?(Ve=-1,Xe=Le-1):(Ve=1,Xe=0),Ue=b(tn("minTime")),Ze=b(tn("maxTime")),$e=tn("columnFormat"),Qe=tn("weekNumbers"),Ge=tn("weekNumberTitle"),Ke="iso"!=tn("weekNumberCalculation")?"w":"W",Ne=tn("snapMinutes")||tn("slotMinutes")}function s(){var e,r,a,o,i,s=Ye+"-widget-header",c=Ye+"-widget-content",l=0==tn("slotMinutes")%15;for(e="",e+=Qe?"",r=0;Le>r;r++)e+=""+""+""+""+""+"",r=0;Le>r;r++)e+="";for(e+=""+""+""+"
":" ";for(e+=" 
 "+"
"+"
"+"
 
"+"
"+"
"+"
 
",te=t(e).appendTo(n),ee=te.find("thead"),ne=ee.find("th").slice(1,-1),re=te.find("tbody"),ae=re.find("td").slice(0,-1),oe=ae.find("div.fc-day-content div"),ie=ae.eq(0),se=ie.find("> div"),Z(ee.add(ee.find("tr"))),Z(re.add(re.find("tr"))),Se=ee.find("th:first"),Ee=te.find(".fc-agenda-gutter"),le=t("
").appendTo(n),tn("allDaySlot")?(fe=t("
").appendTo(le),e=""+""+""+""+"
"+tn("allDayText")+""+"
"+"
 
",pe=t(e).appendTo(le),ye=pe.find("tr"),D(ye.find("td")),Se=Se.add(pe.find("th:first")),Ee=Ee.add(pe.find("th.fc-agenda-gutter")),le.append("
"+"
"+"
")):fe=t([]),be=t("
").appendTo(le),we=t("
").appendTo(be),De=t("
").appendTo(we),e="",a=v(),o=u(d(a),Ze),u(a,Ue),_e=0,r=0;o>a;r++)i=a.getMinutes(),e+=""+""+""+"",u(a,tn("slotMinutes")),_e++;e+="
"+(l&&i?" ":un(a,tn("axisFormat")))+""+"
 
"+"
",Me=t(e).appendTo(we),Ce=Me.find("div:first"),M(Me.find("td")),Se=Se.add(Me.find("th:first"))}function l(){var t,e,n,r,a=f(new Date);if(Qe){var o=un(N(0),Ke);Je?o+=Ge:o=Ge+o,ee.find(".fc-week-number").text(o)}for(t=0;Le>t;t++)r=N(t),e=ne.eq(t),e.html(un(r,$e)),n=ae.eq(t),+r==+a?n.addClass(Ye+"-state-highlight fc-today"):n.removeClass(Ye+"-state-highlight fc-today"),$(e.add(n),r)}function h(t,n){t===e&&(t=ke),ke=t,fn={};var r=re.position().top,a=be.position().top,o=Math.min(t-r,Me.height()+a+1);se.height(o-L(ie)),le.css("top",r),be.height(o-a-1),Re=Ce.height()+1,We=tn("slotMinutes")/Ne,Ae=Re/We,n&&m()}function p(e){Te=e,qe.clear(),He=0,z(Se.width("").each(function(e,n){He=Math.max(He,t(n).outerWidth())}),He);var n=be[0].clientWidth;Fe=be.width()-n,Fe?(z(Ee,Fe),Ee.show().prev().removeClass("fc-last")):Ee.hide().prev().addClass("fc-last"),ze=Math.floor((n-He)/Le),z(ne.slice(0,-1),ze)}function m(){function t(){be.scrollTop(r)}var e=v(),n=d(e);n.setHours(tn("firstHour"));var r=_(e,n)+1;t(),setTimeout(t,0)}function y(){Ie=be.scrollTop()}function w(){be.scrollTop(Ie)}function D(t){t.click(C).mousedown(cn)}function M(t){t.click(C).mousedown(V)}function C(t){if(!tn("selectable")){var e=Math.min(Le-1,Math.floor((t.pageX-te.offset().left-He)/ze)),n=N(e),r=this.parentNode.className.match(/fc-slot(\d+)/);if(r){var a=parseInt(r[1])*tn("slotMinutes"),o=Math.floor(a/60);n.setHours(o),n.setMinutes(a%60+Ue),en("dayClick",ae[e],n,!1,t)}else en("dayClick",ae[e],n,!0,t)}}function S(t,e,n){n&&Oe.build();var r,a,o=d(K.visStart);Je?(r=g(e,o)*Ve+Xe+1,a=g(t,o)*Ve+Xe+1):(r=g(t,o),a=g(e,o)),r=Math.max(0,r),a=Math.min(Le,a),a>r&&D(E(0,r,0,a-1))}function E(t,e,n,r){var a=Oe.rect(t,e,n,r,le);return rn(a,le)}function x(t,e){for(var n=d(K.visStart),r=c(d(n),1),a=0;Le>a;a++){var o=new Date(Math.max(n,t)),i=new Date(Math.min(r,e));if(i>o){var s=a*Ve+Xe,l=Oe.rect(0,s,0,s,we),u=_(n,o),f=_(n,i);l.top=u,l.height=f-u,M(rn(l,we))}c(n,1),c(r,1)}}function T(t){return qe.left(t)}function k(t){return qe.right(t)}function H(t){return{row:Math.floor(g(t,K.visStart)/7),col:A(t.getDay())}}function R(t){var e=N(t.col),n=t.row;return tn("allDaySlot")&&n--,n>=0&&u(e,Ue+n*Ne),e}function N(t){return c(d(K.visStart),t*Ve+Xe)}function W(t){return tn("allDaySlot")&&!t.row}function A(t){return(t-Math.max(je,Pe)+Le)%Le*Ve+Xe}function _(t,n){if(t=d(t,!0),u(d(t),Ue)>n)return 0;if(n>=u(d(t),Ze))return Me.height();var r=tn("slotMinutes"),a=60*n.getHours()+n.getMinutes()-Ue,o=Math.floor(a/r),i=fn[o];return i===e&&(i=fn[o]=Me.find("tr:eq("+o+") td div")[0].offsetTop),Math.max(0,Math.round(i-1+Re*(a%r/r)))}function O(){return{left:He,right:Te-Fe}}function B(){return ye}function q(t){var e=d(t.start);return t.allDay?e:u(e,tn("defaultEventMinutes"))}function I(t,e){return e?d(t):u(d(t),tn("slotMinutes"))}function j(t,e,n){n?tn("allDaySlot")&&S(t,c(d(e),1),!0):P(t,e)}function P(e,n){var r=tn("selectHelper");if(Oe.build(),r){var a=g(e,K.visStart)*Ve+Xe;if(a>=0&&Le>a){var o=Oe.rect(0,a,0,a,we),i=_(e,e),s=_(e,n);if(s>i){if(o.top=i,o.height=s-i,o.left+=2,o.width-=5,t.isFunction(r)){var c=r(e,n);c&&(o.position="absolute",o.zIndex=8,xe=t(c).css(o).appendTo(we))}else o.isStart=!0,o.isEnd=!0,xe=t(ln({title:"",start:e,end:n,className:["fc-select-helper"],editable:!1},o)),xe.css("opacity",tn("dragOpacity"));xe&&(M(xe),we.append(xe),z(xe,o.width,!0),F(xe,o.height,!0))}}}else x(e,n)}function J(){an(),xe&&(xe.remove(),xe=null)}function V(e){if(1==e.which&&tn("selectable")){sn(e);var n;Be.start(function(t,e){if(J(),t&&t.col==e.col&&!W(t)){var r=R(e),a=R(t);n=[r,u(d(r),Ne),a,u(d(a),Ne)].sort(Y),P(n[0],n[3])}else n=null},e),t(document).one("mouseup",function(t){Be.stop(),n&&(+n[0]==+n[1]&&X(n[0],!1,t),on(n[0],n[3],!1,t))})}}function X(t,e,n){en("dayClick",ae[A(t.getDay())],t,e,n)}function Q(t,e){Be.start(function(t){if(an(),t)if(W(t))E(t.row,t.col,t.row,t.col);else{var e=R(t),n=u(d(e),tn("defaultEventMinutes"));x(e,n)}},e)}function G(t,e,n){var r=Be.stop();an(),r&&en("drop",t,R(r),W(r),e,n)}var K=this;K.renderAgenda=o,K.setWidth=p,K.setHeight=h,K.beforeHide=y,K.afterShow=w,K.defaultEventEnd=q,K.timePosition=_,K.dayOfWeekCol=A,K.dateCell=H,K.cellDate=R,K.cellIsAllDay=W,K.allDayRow=B,K.allDayBounds=O,K.getHoverListener=function(){return Be},K.colContentLeft=T,K.colContentRight=k,K.getDaySegmentContainer=function(){return fe},K.getSlotSegmentContainer=function(){return De},K.getMinMinute=function(){return Ue},K.getMaxMinute=function(){return Ze},K.getBodyContent=function(){return we},K.getRowCnt=function(){return 1},K.getColCnt=function(){return Le},K.getColWidth=function(){return ze},K.getSnapHeight=function(){return Ae},K.getSnapMinutes=function(){return Ne},K.defaultSelectionEnd=I,K.renderDayOverlay=S,K.renderSelection=j,K.clearSelection=J,K.reportDayClick=X,K.dragStart=Q,K.dragStop=G,ue.call(K,n,r,a),ve.call(K),de.call(K),ce.call(K);var te,ee,ne,re,ae,oe,ie,se,le,fe,pe,ye,be,we,De,Me,Ce,Se,Ee,xe,Te,ke,He,ze,Fe,Re,Ne,We,Ae,Le,_e,Oe,Be,qe,Ie,Ye,je,Pe,Je,Ve,Xe,Ue,Ze,$e,Qe,Ge,Ke,tn=K.opt,en=K.trigger,nn=K.clearEvents,rn=K.renderOverlay,an=K.clearOverlays,on=K.reportSelection,sn=K.unselect,cn=K.daySelectionMousedown,ln=K.slotSegHtml,un=r.formatDate,fn={};U(n.addClass("fc-agenda")),Oe=new he(function(e,n){function r(t){return Math.max(c,Math.min(l,t))}var a,o,i;ne.each(function(e,r){a=t(r),o=a.offset().left,e&&(i[1]=o),i=[o],n[e]=i}),i[1]=o+a.outerWidth(),tn("allDaySlot")&&(a=ye,o=a.offset().top,e[0]=[o,o+a.outerHeight()]);for(var s=we.offset().top,c=be.offset().top,l=c+be.outerHeight(),u=0;_e*We>u;u++)e.push([r(s+Ae*u),r(s+Ae*(u+1))])}),Be=new ge(Oe),qe=new me(function(t){return oe.eq(t)})}function ce(){function n(t,e){S(t);var n,r=t.length,i=[],c=[];for(n=0;r>n;n++)t[n].allDay?i.push(t[n]):c.push(t[n]);y("allDaySlot")&&(Y(a(i),e),z()),s(o(c),e),b("eventAfterAllRender")}function r(){E(),N().empty(),W().empty()}function a(e){var n,r,a,o,i=k(T(e,t.map(e,C),m.visStart,m.visEnd)),s=i.length,c=[];for(n=0;s>n;n++)for(r=i[n],a=0;r.length>a;a++)o=r[a],o.row=0,o.level=n,c.push(o);return c}function o(e){var n,r,a,o,s,l,f=P(),v=O(),h=_(),g=u(d(m.visStart),v),p=t.map(e,i),y=[];for(n=0;f>n;n++){for(r=k(T(e,p,g,u(d(g),h-v))),le(r),a=0;r.length>a;a++)for(o=r[a],s=0;o.length>s;s++)l=o[s],l.col=n,l.level=a,y.push(l);c(g,1,!0)}return y}function i(t){return t.end?d(t.end):u(d(t.start),y("defaultEventMinutes"))}function s(n,r){var a,o,i,s,c,u,f,d,h,g,p,m,w,D,M,C,S,E,x,T,k,z,F=n.length,N="",A={},_={},O=W(),Y=P();for((T=y("isRTL"))?(k=-1,z=Y-1):(k=1,z=0),a=0;F>a;a++)o=n[a],i=o.event,s=B(o.start,o.start),c=B(o.start,o.end),u=o.col,f=o.level,d=o.forward||0,h=q(u*k+z),g=I(u*k+z)-h,g=Math.min(g-6,.95*g),p=f?g/(f+d+1):d?2*(g/(d+1)-6):g,m=h+g/(f+d+1)*f*k+(T?g-p:0),o.top=s,o.left=m,o.outerWidth=p,o.outerHeight=c-s,N+=l(i,o); +for(O[0].innerHTML=N,w=O.children(),a=0;F>a;a++)o=n[a],i=o.event,D=t(w[a]),M=b("eventRender",i,i,D),M===!1?D.remove():(M&&M!==!0&&(D.remove(),D=t(M).css({position:"absolute",top:o.top,left:o.left}).appendTo(O)),o.element=D,i._id===r?v(i,D,o):D[0]._fci=a,G(i,D));for(H(O,n,v),a=0;F>a;a++)o=n[a],(D=o.element)&&(S=A[C=o.key=X(D[0])],o.vsides=S===e?A[C]=L(D,!0):S,S=_[C],o.hsides=S===e?_[C]=R(D,!0):S,E=D.find(".fc-event-title"),E.length&&(o.contentTop=E[0].offsetTop));for(a=0;F>a;a++)o=n[a],(D=o.element)&&(D[0].style.width=Math.max(0,o.outerWidth-o.hsides)+"px",x=Math.max(0,o.outerHeight-o.vsides),D[0].style.height=x+"px",i=o.event,o.contentTop!==e&&10>x-o.contentTop&&(D.find("div.fc-event-time").text(ie(i.start,y("timeFormat"))+" - "+i.title),D.find("div.fc-event-title").remove()),b("eventAfterRender",i,i,D))}function l(t,e){var n="<",r=t.url,a=Q(t,y),o=["fc-event","fc-event-vert"];return w(t)&&o.push("fc-event-draggable"),e.isStart&&o.push("fc-event-start"),e.isEnd&&o.push("fc-event-end"),o=o.concat(t.className),t.source&&(o=o.concat(t.source.className||[])),n+=r?"a href='"+V(t.url)+"'":"div",n+=" class='"+o.join(" ")+"'"+" style='position:absolute;z-index:8;top:"+e.top+"px;left:"+e.left+"px;"+a+"'"+">"+"
"+"
"+V(se(t.start,t.end,y("timeFormat")))+"
"+"
"+V(t.title)+"
"+"
"+"
",e.isEnd&&D(t)&&(n+="
=
"),n+=""}function f(t,e,n){w(t)&&h(t,e,n.isStart),n.isEnd&&D(t)&&j(t,e,n),x(t,e)}function v(t,e,n){var r=e.find("div.fc-event-time");w(t)&&g(t,e,r),n.isEnd&&D(t)&&p(t,e,r),x(t,e)}function h(t,e,n){function r(){s||(e.width(a).height("").draggable("option","grid",null),s=!0)}var a,o,i,s=!0,l=y("isRTL")?-1:1,u=A(),f=J(),v=U(),h=Z(),g=O();e.draggable({zIndex:9,opacity:y("dragOpacity","month"),revertDuration:y("dragRevertDuration"),start:function(g,p){b("eventDragStart",e,t,g,p),te(t,e),a=e.width(),u.start(function(a,u,g,p){ae(),a?(o=!1,i=p*l,a.row?n?s&&(e.width(f-10),F(e,v*Math.round((t.end?(t.end-t.start)/Te:y("defaultEventMinutes"))/h)),e.draggable("option","grid",[f,1]),s=!1):o=!0:(re(c(d(t.start),i),c(C(t),i)),r()),o=o||s&&!i):(r(),o=!0),e.draggable("option","revert",o)},g,"drag")},stop:function(n,a){if(u.stop(),ae(),b("eventDragStop",e,t,n,a),o)r(),e.css("filter",""),K(t,e);else{var c=0;s||(c=Math.round((e.offset().top-$().offset().top)/v)*h+g-(60*t.start.getHours()+t.start.getMinutes())),ee(this,t,i,c,s,n,a)}}})}function g(t,e,n){function r(e){var r,a=u(d(t.start),e);t.end&&(r=u(d(t.end),e)),n.text(se(a,r,y("timeFormat")))}function a(){f&&(n.css("display",""),e.draggable("option","grid",[p,m]),f=!1)}var o,i,s,l,f=!1,v=y("isRTL")?-1:1,h=A(),g=P(),p=J(),m=U(),w=Z();e.draggable({zIndex:9,scroll:!1,grid:[p,m],axis:1==g?"y":!1,opacity:y("dragOpacity"),revertDuration:y("dragRevertDuration"),start:function(r,u){b("eventDragStart",e,t,r,u),te(t,e),o=e.position(),s=l=0,h.start(function(r,o,s,l){e.draggable("option","revert",!r),ae(),r&&(i=l*v,y("allDaySlot")&&!r.row?(f||(f=!0,n.hide(),e.draggable("option","grid",null)),re(c(d(t.start),i),c(C(t),i))):a())},r,"drag")},drag:function(t,e){s=Math.round((e.position.top-o.top)/m)*w,s!=l&&(f||r(s),l=s)},stop:function(n,c){var l=h.stop();ae(),b("eventDragStop",e,t,n,c),l&&(i||s||f)?ee(this,t,i,f?0:s,f,n,c):(a(),e.css("filter",""),e.css(o),r(0),K(t,e))}})}function p(t,e,n){var r,a,o=U(),i=Z();e.resizable({handles:{s:".ui-resizable-handle"},grid:o,start:function(n,o){r=a=0,te(t,e),e.css("z-index",9),b("eventResizeStart",this,t,n,o)},resize:function(s,c){r=Math.round((Math.max(o,e.height())-c.originalSize.height)/o),r!=a&&(n.text(se(t.start,r||t.end?u(M(t),i*r):null,y("timeFormat"))),a=r)},stop:function(n,a){b("eventResizeStop",this,t,n,a),r?ne(this,t,0,i*r,n,a):(e.css("z-index",8),K(t,e))}})}var m=this;m.renderEvents=n,m.compileDaySegs=a,m.clearEvents=r,m.slotSegHtml=l,m.bindDaySeg=f,fe.call(m);var y=m.opt,b=m.trigger,w=m.isEventDraggable,D=m.isEventResizable,M=m.eventEnd,S=m.reportEvents,E=m.reportEventClear,x=m.eventElementHandlers,z=m.setHeight,N=m.getDaySegmentContainer,W=m.getSlotSegmentContainer,A=m.getHoverListener,_=m.getMaxMinute,O=m.getMinMinute,B=m.timePosition,q=m.colContentLeft,I=m.colContentRight,Y=m.renderDaySegs,j=m.resizableDayEvent,P=m.getColCnt,J=m.getColWidth,U=m.getSnapHeight,Z=m.getSnapMinutes,$=m.getBodyContent,G=m.reportEventElement,K=m.showEvents,te=m.hideEvents,ee=m.eventDrop,ne=m.eventResize,re=m.renderDayOverlay,ae=m.clearOverlays,oe=m.calendar,ie=oe.formatDate,se=oe.formatDates}function le(t){var e,n,r,a,o,i;for(e=t.length-1;e>0;e--)for(a=t[e],n=0;a.length>n;n++)for(o=a[n],r=0;t[e-1].length>r;r++)i=t[e-1][r],x(o,i)&&(i.forward=Math.max(i.forward||0,(o.forward||0)+1))}function ue(t,n,r){function a(t,e){var n=F[t];return"object"==typeof n?J(n,e||r):n}function o(t,e){return n.trigger.apply(n,[t,e||S].concat(Array.prototype.slice.call(arguments,2),[S]))}function i(t){return l(t)&&!a("disableDragging")}function s(t){return l(t)&&!a("disableResizing")}function l(t){return K(t.editable,(t.source||{}).editable,a("editable"))}function f(t){k={};var e,n,r=t.length;for(e=0;r>e;e++)n=t[e],k[n._id]?k[n._id].push(n):k[n._id]=[n]}function v(t){return t.end?d(t.end):E(t)}function h(t,e){H.push(e),z[t._id]?z[t._id].push(e):z[t._id]=[e]}function g(){H=[],z={}}function p(t,n){n.click(function(r){return n.hasClass("ui-draggable-dragging")||n.hasClass("ui-resizable-resizing")?e:o("eventClick",this,t,r)}).hover(function(e){o("eventMouseover",this,t,e)},function(e){o("eventMouseout",this,t,e)})}function m(t,e){b(t,e,"show")}function y(t,e){b(t,e,"hide")}function b(t,e,n){var r,a=z[t._id],o=a.length;for(r=0;o>r;r++)e&&a[r][0]==e[0]||a[r][n]()}function w(t,e,n,r,a,i,s){var c=e.allDay,l=e._id;M(k[l],n,r,a),o("eventDrop",t,e,n,r,a,function(){M(k[l],-n,-r,c),T(l)},i,s),T(l)}function D(t,e,n,r,a,i){var s=e._id;C(k[s],n,r),o("eventResize",t,e,n,r,function(){C(k[s],-n,-r),T(s)},a,i),T(s)}function M(t,n,r,a){r=r||0;for(var o,i=t.length,s=0;i>s;s++)o=t[s],a!==e&&(o.allDay=a),u(c(o.start,n,!0),r),o.end&&(o.end=u(c(o.end,n,!0),r)),x(o,F)}function C(t,e,n){n=n||0;for(var r,a=t.length,o=0;a>o;o++)r=t[o],r.end=u(c(v(r),e,!0),n),x(r,F)}var S=this;S.element=t,S.calendar=n,S.name=r,S.opt=a,S.trigger=o,S.isEventDraggable=i,S.isEventResizable=s,S.reportEvents=f,S.eventEnd=v,S.reportEventElement=h,S.reportEventClear=g,S.eventElementHandlers=p,S.showEvents=m,S.hideEvents=y,S.eventDrop=w,S.eventResize=D;var E=S.defaultEventEnd,x=n.normalizeEvent,T=n.reportEventChange,k={},H=[],z={},F=n.options}function fe(){function n(t,e){var n,r,c,d,p,m,y,b,w=B(),D=T(),M=k(),C=0,S=t.length;for(w[0].innerHTML=a(t),o(t,w.children()),i(t),s(t,w,e),l(t),u(t),f(t),n=v(),r=0;D>r;r++){for(c=0,d=[],p=0;M>p;p++)d[p]=0;for(;S>C&&(m=t[C]).row==r;){for(y=j(d.slice(m.startCol,m.endCol)),m.top=y,y+=m.outerHeight,b=m.startCol;m.endCol>b;b++)d[b]=y;C++}n[r].height(j(d))}g(t,h(n))}function r(e,n,r){var i,s,c,d=t("
"),p=B(),m=e.length;for(d[0].innerHTML=a(e),i=d.children(),p.append(i),o(e,i),l(e),u(e),f(e),g(e,h(v())),i=[],s=0;m>s;s++)c=e[s].element,c&&(e[s].row===n&&c.css("top",r),i.push(c[0]));return t(i)}function a(t){var e,n,r,a,o,i,s,c,l,u,f=y("isRTL"),d=t.length,v=F(),h=v.left,g=v.right,p="";for(e=0;d>e;e++)n=t[e],r=n.event,o=["fc-event","fc-event-hori"],w(r)&&o.push("fc-event-draggable"),n.isStart&&o.push("fc-event-start"),n.isEnd&&o.push("fc-event-end"),f?(i=A(n.end.getDay()-1),s=A(n.start.getDay()),c=n.isEnd?N(i):h,l=n.isStart?W(s):g):(i=A(n.start.getDay()),s=A(n.end.getDay()-1),c=n.isStart?N(i):h,l=n.isEnd?W(s):g),o=o.concat(r.className),r.source&&(o=o.concat(r.source.className||[])),a=r.url,u=Q(r,y),p+=a?""+"
",!r.allDay&&n.isStart&&(p+=""+V(I(r.start,r.end,y("timeFormat")))+""),p+=""+V(r.title)+""+"
",n.isEnd&&D(r)&&(p+="
"+"   "+"
"),p+="",n.left=c,n.outerWidth=l-c,n.startCol=i,n.endCol=s+1;return p}function o(e,n){var r,a,o,i,s,c=e.length;for(r=0;c>r;r++)a=e[r],o=a.event,i=t(n[r]),s=b("eventRender",o,o,i),s===!1?i.remove():(s&&s!==!0&&(s=t(s).css({position:"absolute",left:a.left}),i.replaceWith(s),i=s),a.element=i)}function i(t){var e,n,r,a=t.length;for(e=0;a>e;e++)n=t[e],r=n.element,r&&C(n.event,r)}function s(t,e,n){var r,a,o,i,s=t.length;for(r=0;s>r;r++)a=t[r],o=a.element,o&&(i=a.event,i._id===n?q(i,o,a):o[0]._fci=r);H(e,t,q)}function l(t){var n,r,a,o,i,s=t.length,c={};for(n=0;s>n;n++)r=t[n],a=r.element,a&&(o=r.key=X(a[0]),i=c[o],i===e&&(i=c[o]=R(a,!0)),r.hsides=i)}function u(t){var e,n,r,a=t.length;for(e=0;a>e;e++)n=t[e],r=n.element,r&&(r[0].style.width=Math.max(0,n.outerWidth-n.hsides)+"px")}function f(t){var n,r,a,o,i,s=t.length,c={};for(n=0;s>n;n++)r=t[n],a=r.element,a&&(o=r.key,i=c[o],i===e&&(i=c[o]=O(a)),r.outerHeight=a[0].offsetHeight+i)}function v(){var t,e=T(),n=[];for(t=0;e>t;t++)n[t]=z(t).find("div.fc-day-content > div");return n}function h(t){var e,n=t.length,r=[];for(e=0;n>e;e++)r[e]=t[e][0].offsetTop;return r}function g(t,e){var n,r,a,o,i=t.length;for(n=0;i>n;n++)r=t[n],a=r.element,a&&(a[0].style.top=e[r.row]+(r.top||0)+"px",o=r.event,b("eventAfterRender",o,o,a))}function p(e,n,a){var o=y("isRTL"),i=o?"w":"e",s=n.find(".ui-resizable-"+i),l=!1;U(n),n.mousedown(function(t){t.preventDefault()}).click(function(t){l&&(t.preventDefault(),t.stopImmediatePropagation())}),s.mousedown(function(s){function u(n){b("eventResizeStop",this,e,n),t("body").css("cursor",""),h.stop(),P(),f&&x(this,e,f,0,n),setTimeout(function(){l=!1},0)}if(1==s.which){l=!0;var f,v,h=m.getHoverListener(),g=T(),p=k(),y=o?-1:1,w=o?p-1:0,D=n.css("top"),C=t.extend({},e),H=L(e.start);J(),t("body").css("cursor",i+"-resize").one("mouseup",u),b("eventResizeStart",this,e,s),h.start(function(t,n){if(t){var s=Math.max(H.row,t.row),l=t.col;1==g&&(s=0),s==H.row&&(l=o?Math.min(H.col,l):Math.max(H.col,l)),f=7*s+l*y+w-(7*n.row+n.col*y+w);var u=c(M(e),f,!0);if(f){C.end=u;var h=v;v=r(_([C]),a.row,D),v.find("*").css("cursor",i+"-resize"),h&&h.remove(),E(e)}else v&&(S(e),v.remove(),v=null);P(),Y(e.start,c(d(u),1))}},s)}})}var m=this;m.renderDaySegs=n,m.resizableDayEvent=p;var y=m.opt,b=m.trigger,w=m.isEventDraggable,D=m.isEventResizable,M=m.eventEnd,C=m.reportEventElement,S=m.showEvents,E=m.hideEvents,x=m.eventResize,T=m.getRowCnt,k=m.getColCnt;m.getColWidth;var z=m.allDayRow,F=m.allDayBounds,N=m.colContentLeft,W=m.colContentRight,A=m.dayOfWeekCol,L=m.dateCell,_=m.compileDaySegs,B=m.getDaySegmentContainer,q=m.bindDaySeg,I=m.calendar.formatDates,Y=m.renderDayOverlay,P=m.clearOverlays,J=m.clearSelection}function de(){function e(t,e,a){n(),e||(e=c(t,a)),l(t,e,a),r(t,e,a)}function n(t){f&&(f=!1,u(),s("unselect",null,t))}function r(t,e,n,r){f=!0,s("select",null,t,e,n,r)}function a(e){var a=o.cellDate,s=o.cellIsAllDay,c=o.getHoverListener(),f=o.reportDayClick;if(1==e.which&&i("selectable")){n(e);var d;c.start(function(t,e){u(),t&&s(t)?(d=[a(e),a(t)].sort(Y),l(d[0],d[1],!0)):d=null},e),t(document).one("mouseup",function(t){c.stop(),d&&(+d[0]==+d[1]&&f(d[0],!0,t),r(d[0],d[1],!0,t))})}}var o=this;o.select=e,o.unselect=n,o.reportSelection=r,o.daySelectionMousedown=a;var i=o.opt,s=o.trigger,c=o.defaultSelectionEnd,l=o.renderSelection,u=o.clearSelection,f=!1;i("selectable")&&i("unselectAuto")&&t(document).mousedown(function(e){var r=i("unselectCancel");r&&t(e.target).parents(r).length||n(e)})}function ve(){function e(e,n){var r=o.shift();return r||(r=t("
")),r[0].parentNode!=n[0]&&r.appendTo(n),a.push(r.css(e).show()),r}function n(){for(var t;t=a.shift();)o.push(t.hide().unbind())}var r=this;r.renderOverlay=e,r.clearOverlays=n;var a=[],o=[]}function he(t){var e,n,r=this;r.build=function(){e=[],n=[],t(e,n)},r.cell=function(t,r){var a,o=e.length,i=n.length,s=-1,c=-1;for(a=0;o>a;a++)if(r>=e[a][0]&&e[a][1]>r){s=a;break}for(a=0;i>a;a++)if(t>=n[a][0]&&n[a][1]>t){c=a;break}return s>=0&&c>=0?{row:s,col:c}:null},r.rect=function(t,r,a,o,i){var s=i.offset();return{top:e[t][0]-s.top,left:n[r][0]-s.left,width:n[o][1]-n[r][0],height:e[a][1]-e[t][0]}}}function ge(e){function n(t){pe(t);var n=e.cell(t.pageX,t.pageY);(!n!=!i||n&&(n.row!=i.row||n.col!=i.col))&&(n?(o||(o=n),a(n,o,n.row-o.row,n.col-o.col)):a(n,o),i=n)}var r,a,o,i,s=this;s.start=function(s,c,l){a=s,o=i=null,e.build(),n(c),r=l||"mousemove",t(document).bind(r,n)},s.stop=function(){return t(document).unbind(r,n),i}}function pe(t){t.pageX===e&&(t.pageX=t.originalEvent.pageX,t.pageY=t.originalEvent.pageY)}function me(t){function n(e){return a[e]=a[e]||t(e)}var r=this,a={},o={},i={};r.left=function(t){return o[t]=o[t]===e?n(t).position().left:o[t]},r.right=function(t){return i[t]=i[t]===e?r.left(t)+n(t).width():i[t]},r.clear=function(){a={},o={},i={}}}var ye={defaultView:"month",aspectRatio:1.35,header:{left:"title",center:"",right:"today prev,next"},weekends:!0,weekNumbers:!1,weekNumberCalculation:"iso",weekNumberTitle:"W",allDayDefault:!0,ignoreTimezone:!0,lazyFetching:!0,startParam:"start",endParam:"end",titleFormat:{month:"MMMM yyyy",week:"MMM d[ yyyy]{ '—'[ MMM] d yyyy}",day:"dddd, MMM d, yyyy"},columnFormat:{month:"ddd",week:"ddd M/d",day:"dddd M/d"},timeFormat:{"":"h(:mm)t"},isRTL:!1,firstDay:0,monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],buttonText:{prev:"",next:"",prevYear:"«",nextYear:"»",today:"today",month:"month",week:"week",day:"day"},theme:!1,buttonIcons:{prev:"circle-triangle-w",next:"circle-triangle-e"},unselectAuto:!0,dropAccept:"*"},be={header:{left:"next,prev today",center:"",right:"title"},buttonText:{prev:"",next:"",prevYear:"»",nextYear:"«"},buttonIcons:{prev:"circle-triangle-e",next:"circle-triangle-w"}},we=t.fullCalendar={version:"1.6.1"},De=we.views={};t.fn.fullCalendar=function(n){if("string"==typeof n){var a,o=Array.prototype.slice.call(arguments,1);return this.each(function(){var r=t.data(this,"fullCalendar");if(r&&t.isFunction(r[n])){var i=r[n].apply(r,o);a===e&&(a=i),"destroy"==n&&t.removeData(this,"fullCalendar")}}),a!==e?a:this}var i=n.eventSources||[];return delete n.eventSources,n.events&&(i.push(n.events),delete n.events),n=t.extend(!0,{},ye,n.isRTL||n.isRTL===e&&ye.isRTL?be:{},n),this.each(function(e,a){var o=t(a),s=new r(o,n,i);o.data("fullCalendar",s),s.render()}),this},we.sourceNormalizers=[],we.sourceFetchers=[];var Me={dataType:"json",cache:!1},Ce=1;we.addDays=c,we.cloneDate=d,we.parseDate=m,we.parseISO8601=y,we.parseTime=b,we.formatDate=w,we.formatDates=D;var Se=["sun","mon","tue","wed","thu","fri","sat"],Ee=864e5,xe=36e5,Te=6e4,ke={s:function(t){return t.getSeconds()},ss:function(t){return P(t.getSeconds())},m:function(t){return t.getMinutes()},mm:function(t){return P(t.getMinutes())},h:function(t){return t.getHours()%12||12},hh:function(t){return P(t.getHours()%12||12)},H:function(t){return t.getHours()},HH:function(t){return P(t.getHours())},d:function(t){return t.getDate()},dd:function(t){return P(t.getDate())},ddd:function(t,e){return e.dayNamesShort[t.getDay()]},dddd:function(t,e){return e.dayNames[t.getDay()]},M:function(t){return t.getMonth()+1},MM:function(t){return P(t.getMonth()+1)},MMM:function(t,e){return e.monthNamesShort[t.getMonth()]},MMMM:function(t,e){return e.monthNames[t.getMonth()]},yy:function(t){return(t.getFullYear()+"").substring(2)},yyyy:function(t){return t.getFullYear()},t:function(t){return 12>t.getHours()?"a":"p"},tt:function(t){return 12>t.getHours()?"am":"pm"},T:function(t){return 12>t.getHours()?"A":"P"},TT:function(t){return 12>t.getHours()?"AM":"PM"},u:function(t){return w(t,"yyyy-MM-dd'T'HH:mm:ss'Z'")},S:function(t){var e=t.getDate();return e>10&&20>e?"th":["st","nd","rd"][e%10-1]||"th"},w:function(t,e){return e.weekNumberCalculation(t)},W:function(t){return M(t)}};we.dateFormatters=ke,we.applyAll=G,De.month=te,De.basicWeek=ee,De.basicDay=ne,n({weekMode:"fixed"}),De.agendaWeek=oe,De.agendaDay=ie,n({allDaySlot:!0,allDayText:"all-day",firstHour:6,slotMinutes:30,defaultEventMinutes:120,axisFormat:"h(:mm)tt",timeFormat:{agenda:"h:mm{ - h:mm}"},dragOpacity:{agenda:.5},minTime:0,maxTime:24})})(jQuery); \ No newline at end of file diff --git a/app/assets/javascripts/recruit_news/wpex.js b/app/assets/javascripts/recruit_news/wpex.js new file mode 100644 index 0000000..5bc9aa1 --- /dev/null +++ b/app/assets/javascripts/recruit_news/wpex.js @@ -0,0 +1,10015 @@ +/** + * Project: Total WordPress Theme + * Description: Initialize all scripts and add custom js + * Author: WPExplorer + * Theme URI: http://www.wpexplorer.com + * Author URI: http://www.wpexplorer.com + * License: Custom + * License URI: http://themeforest.net/licenses + * Version 4.7 + */ +var wpex = {}; +$.fn.wpexEqualHeights = function (options) { + var $items = this, + $window = $(window), $targets = null; + var $settings = $.extend({ children: '', mobileBreakPoint: '', reset: false }, options); + if (!$($settings.children).length) { return } + function setHeights(el, reset) { + var $tallest = 0; if ($settings.children) { + var $children = el.find($settings.children).not('.vc_row.vc_inner .vc_column-inner'); + $children.each(function () { + var $child = $(this); if (reset) { $child.css('height', '') } + $height = $child.outerHeight(true); + if($child.children().length != 0){ + $height = 0; + var childs = $child.children(); + for(var i = 0;i $tallest) { $tallest = $height } + if(!window.wpexAnimsition.equal_height){ + $child.css("height", $height + 'px'); + } + }); + if(window.wpexAnimsition.equal_height){ + $children.css('height', $tallest + 'px') + } + } + } + $items.each(function () { + var $this = $(this); + if ($this.is(window.wpexAnimsition.container_block)) { + setHeights($this, false) + } else { + $this.imagesLoaded(function () { + setHeights($this, false) }) + } + }); + $window.resize(function () { + $items.each(function () { + setHeights($(this), true) + }) + }) +}; +( function( $ ) { + + 'use strict'; + + wpex = { + + /** + * Main init function + * + * @since 2.0.0 + */ + init : function() { + this.config(); + this.bindEvents(); + }, + + /** + * Define vars for caching + * + * @since 2.0.0 + */ + config : function() { + + this.config = { + + // General + $window : $( window ), + $document : $( document ), + $head : $( 'head' ), + windowWidth : $( window ).width(), + windowHeight : $( window ).height(), + windowTop : $( window ).scrollTop(), + $body : $( 'body' ), + viewportWidth : '', + $wpAdminBar : null, + isRetina : false, + heightChanged : false, + widthChanged : false, + isRTL : false, + iLightboxSettings : {}, + + // VC + vcActive : false, + + // Mobile + isMobile : false, + mobileMenuStyle : null, + mobileMenuToggleStyle : null, + mobileMenuBreakpoint : 960, + + // Main Divs + $siteWrap : null, + $siteMain : null, + + // Header + $siteHeader : null, + siteHeaderStyle : null, + siteHeaderHeight : 0, + siteHeaderTop : 0, + siteHeaderBottom : 0, + verticalHeaderActive : false, + hasHeaderOverlay : false, + hasStickyHeader : false, + stickyHeaderStyle : null, + hasStickyMobileHeader : false, + hasStickyNavbar : false, + + // Logo + $siteLogo : null, + siteLogoHeight : 0, + siteLogoSrc : null, + + // Nav + $siteNavWrap : null, + $siteNav : null, + $siteNavDropdowns : null, + + // Local Scroll + $localScrollTargets : 'li.local-scroll a, a.local-scroll, .local-scroll-link, .local-scroll-link > a', + localScrollOffset : 0, + localScrollSpeed : 600, + localScrollEasing : 'easeInOutCubic', + localScrollSections : [], + + // Topbar + hasTopBar : false, + hasStickyTopBar : false, + $stickyTopBar : null, + hasStickyTopBarMobile : false, + + // Footer + hasFixedFooter : false + + }; + + }, + + /** + * Bind Events + * + * @since 2.0.0 + */ + bindEvents : function() { + var self = this; + + /*** Run on Document Ready ***/ + self.config.$document.ready(function() { + self.initUpdateConfig(); + self.responsiveText(); + self.superfish(); + self.mobileMenu(); + self.navNoClick(); + self.hideEditLink(); + self.menuWidgetAccordion(); + self.inlineHeaderLogo(); // Header 5 logo + self.menuSearch(); + self.headerCart(); + self.backTopLink(); + self.smoothCommentScroll(); + self.tipsyTooltips(); + self.customHovers(); + self.toggleBar(); + self.localScrollLinks(); + self.customSelects(); + self.wpexOwlCarousel(); + self.autoLightbox(); + self.iLightbox(); + self.overlayHovers(); + self.skillbar(); + self.milestone(); + self.countdown(); + self.typedText(); + self.equalHeights(); + self.archiveMasonryGrids(); + self.isotopeGrids(); + self.responsiveCSS(); + self.vcexFilterNav(); + self.ctf7Preloader(); + self.vcAccessability(); + self.vcPageEditable(); + self.wooGallery(); + self.twentytwenty(); + } ); + + /*** Run on Window Load ***/ + self.config.$window.on( 'load', function() { + self.config.$body.addClass( 'wpex-window-loaded' ); + self.windowLoadUpdateConfig(); + self.megaMenusWidth(); + self.megaMenusTop(); + self.flushDropdownsTop(); + self.fadeIn(); + self.parallax(); + self.cartDropdownRelocate(); + self.sliderPro(); + self.stickyTopBar(); + self.vcTabsTogglesJS(); + self.headerOverlayOffset(); // Add before sticky header ( important ) + + // Sticky Header + if ( self.config.hasStickyHeader ) { + self.stickyHeaderStyle = wpexLocalize.stickyHeaderStyle; + if ( 'standard' == self.stickyHeaderStyle || 'shrink' == self.stickyHeaderStyle || 'shrink_animated' == self.stickyHeaderStyle ) { + self.stickyHeader(); + } + } + + self.stickyHeaderMenu(); + self.stickyVcexNavbar(); + self.footerReveal(); // Footer Reveal => Must run before fixed footer!!! + self.fixedFooter(); + self.titleBreadcrumbsFix(); + + // Infinite scroll + if ( $.fn.infinitescroll !== undefined && $( 'div.infinite-scroll-nav' ).length ) { + self.infiniteScrollInit(); + } + + // Load more + self.loadMore(); + + // Scroll to hash + if ( wpexLocalize.scrollToHash ) { + window.setTimeout( function() { + self.scrollToHash( self ); + }, parseInt( wpexLocalize.scrollToHashTimeout ) ); + } + + } ); + + /*** Run on Window Resize ***/ + self.config.$window.resize( function() { + + // Reset + self.config.widthChanged = false; + self.config.heightChanged = false; + + // Window width change + if ( self.config.$window.width() != self.config.windowWidth ) { + self.config.widthChanged = true; + self.widthResizeUpdateConfig(); + } + + // Height changes + if ( self.config.$window.height() != self.config.windowHeight ) { + self.config.windowHeight = self.config.$window.height(); // update height + self.config.heightChanged = true; + } + + } ); + + /*** Run on Window Scroll ***/ + self.config.$window.scroll( function() { + + // Reset + self.config.$hasScrolled = false; + + // Yes we actually scrolled + if ( self.config.$window.scrollTop() != self.config.windowTop ) { + self.config.$hasScrolled = true; + self.config.windowTop = self.config.$window.scrollTop(); + self.localScrollHighlight(); + } + + } ); + + /*** Run on Orientation Change ***/ + self.config.$window.on( 'orientationchange', function() { + self.widthResizeUpdateConfig(); + self.isotopeGrids(); + self.vcexFilterNav(); + self.archiveMasonryGrids(); + } ); + + }, + + /** + * Updates config on doc ready + * + * @since 3.0.0 + */ + initUpdateConfig: function() { + var self = this; + + self.config.$body.addClass( 'wpex-docready' ); + + // Check if VC is enabled + self.config.vcActive = this.config.$body.hasClass( 'wpb-js-composer' ); + + // Get Viewport width + self.config.viewportWidth = self.viewportWidth(); + + // Check if retina + self.config.isRetina = self.retinaCheck(); + if ( self.config.isRetina ) { + self.config.$body.addClass( 'wpex-is-retina' ); + } + + // Mobile check & add mobile class to the header + if ( self.mobileCheck() ) { + self.config.isMobile = true; + self.config.$body.addClass( 'wpex-is-mobile-device' ); + } + + // Define Wp admin bar + var $wpAdminBar = $( '#wpadminbar' ); + if ( $wpAdminBar.length ) { + self.config.$wpAdminBar = $wpAdminBar; + } + + // Define wrap + var $siteWrap = $( '#wrap' ); + if ( $siteWrap ) { + self.config.$siteWrap = $siteWrap; + } + + // Define main + var $siteMain = $( '#main' ); + if ( $siteMain ) { + self.config.$siteMain = $siteMain; + } + + // Define header + var $siteHeader = $( '#site-header' ); + if ( $siteHeader.length ) { + self.config.siteHeaderStyle = wpexLocalize.siteHeaderStyle; + self.config.$siteHeader = $( '#site-header' ); + } + + // Define logo + var $siteLogo = $( '#site-logo img.logo-img' ); + if ( $siteLogo.length ) { + self.config.$siteLogo = $siteLogo; + self.config.siteLogoSrc = self.config.$siteLogo.attr( 'src' ); + } + + // Menu Stuff + var $siteNavWrap = $( '#site-navigation-wrap' ); + if ( $siteNavWrap.length ) { + + // Define menu + self.config.$siteNavWrap = $siteNavWrap; + var $siteNav = $( '#site-navigation', $siteNavWrap ); + if ( $siteNav.length ) { + self.config.$siteNav = $siteNav; + } + + // Check if sticky menu is enabled + if ( wpexLocalize.hasStickyNavbar ) { + self.config.hasStickyNavbar = true; + } + + // Store dropdowns + var $siteNavDropdowns = $( '.dropdown-menu > .menu-item-has-children > ul', $siteNavWrap ); + if ( $siteNavWrap.length ) { + self.config.$siteNavDropdowns = $siteNavDropdowns; + } + + } + + // Mobile menu settings + if ( wpexLocalize.hasMobileMenu ) { + self.config.mobileMenuStyle = wpexLocalize.mobileMenuStyle; + self.config.mobileMenuToggleStyle = wpexLocalize.mobileMenuToggleStyle; + self.config.mobileMenuBreakpoint = wpexLocalize.mobileMenuBreakpoint; + } + + // Check if fixed footer is enabled + if ( self.config.$body.hasClass( 'wpex-has-fixed-footer' ) ) { + self.config.hasFixedFooter = true; + } + + // Footer reveal + self.config.$footerReveal = $( '.footer-reveal-visible' ); + if ( self.config.$footerReveal.length && self.config.$siteWrap && self.config.$siteMain ) { + self.config.$hasFooterReveal = true; + } + + // Header overlay + if ( self.config.$siteHeader && self.config.$body.hasClass( 'has-overlay-header' ) ) { + self.config.hasHeaderOverlay = true; + } + + // Top bar enabled + var $topBarWrap = $( '#top-bar-wrap' ); + if ( $topBarWrap.length ) { + self.config.hasTopBar = true; + if ( $topBarWrap.hasClass( 'wpex-top-bar-sticky' ) ) { + self.config.$stickyTopBar = $topBarWrap; + if ( self.config.$stickyTopBar.length ) { + self.config.hasStickyTopBar = true; + self.config.hasStickyTopBarMobile = wpexLocalize.hasStickyTopBarMobile; + } + } + } + + // Sticky Header => Mobile Check (must check first) + self.config.hasStickyMobileHeader = wpexLocalize.hasStickyMobileHeader; + + // Check if sticky header is enabled + if ( self.config.$siteHeader && wpexLocalize.hasStickyHeader ) { + self.config.hasStickyHeader = true; + } + + // Vertical header + if ( this.config.$body.hasClass( 'wpex-has-vertical-header' ) ) { + self.config.verticalHeaderActive = true; + } + + // Local scroll speed + if ( wpexLocalize.localScrollSpeed ) { + self.config.localScrollSpeed = parseInt( wpexLocalize.localScrollSpeed ); + } + + // Local scroll easing + if ( wpexLocalize.localScrollEasing ) { + self.config.localScrollEasing = wpexLocalize.localScrollEasing; + if ( 'false' == self.config.localScrollEasing ) { + self.config.localScrollEasing = 'swing'; + } + } + + // Get local scrolling sections + self.config.localScrollSections = self.localScrollSections(); + + }, + + /** + * Updates config on window load + * + * @since 3.0.0 + */ + windowLoadUpdateConfig: function() { + + // Header bottom position + if ( this.config.$siteHeader ) { + var siteHeaderTop = this.config.$siteHeader.offset().top; + this.config.windowHeight = this.config.$window.height(); + this.config.siteHeaderHeight = this.config.$siteHeader.outerHeight(); + this.config.siteHeaderBottom = siteHeaderTop + this.config.siteHeaderHeight; + this.config.siteHeaderTop = siteHeaderTop; + if ( this.config.$siteLogo ) { + this.config.siteLogoHeight = this.config.$siteLogo.height(); + } + } + + // Set localScrollOffset after site is loaded to make sure it includes dynamic items + this.config.localScrollOffset = this.parseLocalScrollOffset( 'init' ); + + }, + + /** + * Updates config whenever the window is resized + * + * @since 3.0.0 + */ + widthResizeUpdateConfig: function() { + + // Update main configs + this.config.windowHeight = this.config.$window.height(); + this.config.windowWidth = this.config.$window.width(); + this.config.windowTop = this.config.$window.scrollTop(); + this.config.viewportWidth = this.viewportWidth(); + + // Update header height + if ( this.config.$siteHeader ) { + this.config.siteHeaderHeight = this.config.$siteHeader.outerHeight(); + } + + // Get logo height + if ( this.config.$siteLogo ) { + this.config.siteLogoHeight = this.config.$siteLogo.height(); + } + + // Vertical Header + if ( this.config.windowWidth < 960 ) { + this.config.verticalHeaderActive = false; + } else if ( this.config.$body.hasClass( 'wpex-has-vertical-header' ) ) { + this.config.verticalHeaderActive = true; + } + + // Local scroll offset => update last + this.config.localScrollOffset = this.parseLocalScrollOffset( 'resize' ); + + // Re-run functions + this.megaMenusWidth(); + this.inlineHeaderLogo(); + this.cartDropdownRelocate(); + this.overlayHovers(); + this.responsiveText(); + + }, + + /** + * Retina Check + * + * @since 3.4.0 + */ + retinaCheck: function() { + var mediaQuery = '(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)'; + if ( window.devicePixelRatio > 1 ) { + return true; + } + if ( window.matchMedia && window.matchMedia( mediaQuery ).matches ) { + return true; + } + return false; + }, + + /** + * Mobile Check + * + * @since 2.1.0 + */ + mobileCheck: function() { + if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test( navigator.userAgent ) ) { + return true; + } + }, + + /** + * Viewport width + * + * @since 3.4.0 + */ + viewportWidth: function() { + var e = window, a = 'inner'; + if ( ! ( 'innerWidth' in window ) ) { + a = 'client'; + e = document.documentElement || document.body; + } + return e[ a+'Width' ]; + }, + + /** + * Superfish menus + * + * @since 2.0.0 + */ + superfish: function() { + + if ( ! this.config.$siteNav || undefined === $.fn.superfish ) { + return; + } + + $( 'ul.sf-menu', this.config.$siteNav ).superfish( { + delay : wpexLocalize.superfishDelay, + speed : wpexLocalize.superfishSpeed, + speedOut : wpexLocalize.superfishSpeedOut, + cssArrows : false, + disableHI : false, + animation : { + opacity : 'show' + }, + animationOut : { + opacity : 'hide' + } + } ); + + }, + + /** + * MegaMenus Width + * + * @since 2.0.0 + */ + megaMenusWidth: function() { + + if ( ! wpexLocalize.megaMenuJS + || 'one' != this.config.siteHeaderStyle + || ! this.config.$siteNavDropdowns + || ! this.config.$siteNavWrap.is( ':visible' ) + ) { + return; + } + + // Define megamenu + var $megamenu = $( '.megamenu > ul', this.config.$siteNavWrap ); + + // Don't do anything if there isn't any megamenu + if ( ! $megamenu.length ) { + return; + } + + var $headerContainerWidth = this.config.$siteHeader.find( '.container' ).outerWidth(), + $navWrapWidth = this.config.$siteNavWrap.outerWidth(), + $siteNavigationWrapPosition = parseInt( this.config.$siteNavWrap.css( 'right' ) ); + + if ( 'auto' == $siteNavigationWrapPosition ) { + $siteNavigationWrapPosition = 0; + } + + var $megaMenuNegativeMargin = $headerContainerWidth-$navWrapWidth-$siteNavigationWrapPosition; + + $megamenu.css( { + 'width' : $headerContainerWidth, + 'margin-left' : -$megaMenuNegativeMargin + } ); + + }, + + /** + * MegaMenus Top Position + * + * @since 2.0.0 + */ + megaMenusTop: function() { + var self = this; + if ( ! self.config.$siteNavDropdowns || 'one' != self.config.siteHeaderStyle ) { + return; + } + + var $megamenu = $( '.megamenu > ul', self.config.$siteNavWrap ); + if ( ! $megamenu.length ) return; // Don't do anything if there isn't any megamenu + + function setPosition() { + if ( self.config.$siteNavWrap.is( ':visible' ) ) { + var $headerHeight = self.config.$siteHeader.outerHeight(); + var $navHeight = self.config.$siteNavWrap.outerHeight(); + var $megaMenuTop = $headerHeight - $navHeight; + $megamenu.css( { + 'top' : $megaMenuTop/2 + $navHeight + } ); + } + } + setPosition(); + + // update on scroll + this.config.$window.scroll( function() { + setPosition(); + } ); + + // Update on resize + this.config.$window.resize( function() { + setPosition(); + } ); + + // Update on hover just incase + $( '.megamenu > a', self.config.$siteNav ).hover( function() { + setPosition(); + } ); + + }, + + /** + * FlushDropdowns top positioning + * + * @since 2.0.0 + */ + flushDropdownsTop: function() { + var self = this; + if ( ! self.config.$siteNavDropdowns || ! self.config.$siteNavWrap.hasClass( 'wpex-flush-dropdowns' ) ) { + return; + } + + // Set position + function setPosition() { + if ( self.config.$siteNavWrap.is( ':visible' ) ) { + var $headerHeight = self.config.$siteHeader.outerHeight(); + var $siteNavWrapHeight = self.config.$siteNavWrap.outerHeight(); + var $dropTop = $headerHeight - $siteNavWrapHeight; + self.config.$siteNavDropdowns.css( 'top', $dropTop/2 + $siteNavWrapHeight ); + } + } + setPosition(); + + // Update on scroll + this.config.$window.scroll( function() { + setPosition(); + } ); + + // Update on resize + this.config.$window.resize( function() { + setPosition(); + } ); + + // Update on hover + $( '.wpex-flush-dropdowns li.menu-item-has-children > a' ).hover( function() { + setPosition(); + } ); + + }, + + /** + * Mobile Menu + * + * @since 2.0.0 + */ + mobileMenu: function() { + if ( 'sidr' == this.config.mobileMenuStyle && typeof wpexLocalize.sidrSource !== 'undefined' ) { + this.mobileMenuSidr(); + } else if ( 'toggle' == this.config.mobileMenuStyle ) { + this.mobileMenuToggle(); + } else if ( 'full_screen' == this.config.mobileMenuStyle ) { + this.mobileMenuFullScreen(); + } + }, + + /** + * Mobile Menu + * + * @since 3.6.0 + */ + mobileMenuSidr: function() { + var self = this, + $toggleBtn = $( 'a.mobile-menu-toggle, li.mobile-menu-toggle > a' ); + + // Add dark overlay to content + self.config.$body.append( '
' ); + var $sidrOverlay = $( '.wpex-sidr-overlay' ); + + // Add active class to toggle button + $toggleBtn.click( function() { + $( this ).toggleClass( 'wpex-active' ); + } ); + + // Add sidr + $toggleBtn.sidr( { + name : 'sidr-main', + source : wpexLocalize.sidrSource, + side : wpexLocalize.sidrSide, + displace : wpexLocalize.sidrDisplace, + speed : parseInt( wpexLocalize.sidrSpeed ), + renaming : true, + bind : 'click', + + // Callbacks + onOpen: function() { + + // Add extra classname + $( '#sidr-main' ).addClass( 'wpex-mobile-menu' ); + + // Prevent body scroll + if ( wpexLocalize.sidrBodyNoScroll ) { + self.config.$body.addClass( 'wpex-noscroll' ); + } + + // FadeIn Overlay + $sidrOverlay.fadeIn( wpexLocalize.sidrSpeed, function() { + $sidrOverlay.addClass( 'wpex-custom-cursor' ); + } ); + + // Close sidr when clicking on overlay + $( '.wpex-sidr-overlay' ).on( 'click', function( event ) { + $.sidr( 'close', 'sidr-main' ); + return false; + } ); + + }, + + onClose: function() { + + // Remove active class + $toggleBtn.removeClass( 'wpex-active' ); + + // Remove body noscroll class + if ( wpexLocalize.sidrBodyNoScroll ) { + self.config.$body.removeClass( 'wpex-noscroll' ); + } + + // FadeOut overlay + $sidrOverlay.removeClass( 'wpex-custom-cursor' ).fadeOut( wpexLocalize.sidrSpeed ); + + }, + + onCloseEnd: function() { + + // Remove active dropdowns + $( '.sidr-class-menu-item-has-children.active' ).removeClass( 'active' ).find( 'ul' ).hide(); + + // Re-trigger stretched rows to prevent issues if browser was resized while + // sidr was open + if ( $.fn.vc_rowBehaviour !== undefined ) { + vc_rowBehaviour(); + } + + } + + } ); + + // Cache main sidebar var + var $sidrMain = $( '#sidr-main' ); + + // Sidr dropdown toggles + var $sidrMenu = $( '.sidr-class-dropdown-menu', $sidrMain ), + $sidrDropdownTargetEl = $( '.sidr-class-menu-item-has-children > a', $sidrMenu ); + + // Add dropdown toggle (arrow) + $( '.sidr-class-menu-item-has-children', $sidrMenu ) + .children( 'a' ) + .append( '' ); + + // Add toggle click event + $sidrDropdownTargetEl.on( 'click', function( event ) { + + var $parentEl = $( this ).parent( 'li' ); + + if ( ! $parentEl.hasClass( 'active' ) ) { + var $allParentLis = $parentEl.parents( 'li' ); + $( '.sidr-class-menu-item-has-children', $sidrMenu ) + .not( $allParentLis ) + .removeClass( 'active' ) + .children( 'ul' ) + .stop( true, true ) + .slideUp( 'fast' ); + $parentEl.addClass( 'active' ).children( 'ul' ).stop( true, true ).slideDown( 'fast' ); + } else { + $parentEl.removeClass( 'active' ); + $parentEl.find( 'li' ).removeClass( 'active' ); // Remove active from sub-drops + $parentEl.find( 'ul' ).stop( true, true ).slideUp( 'fast' ); // Hide all drops + } + + return false; + + } ); + + // Loop through parent items and add to dropdown if they have a link + var $parents = $( 'li.sidr-class-menu-item-has-children > a', $sidrMenu ); + + $parents.each( function() { + + var $this = $( this ); + + if ( $this && $this.attr( 'href' ) && '#' != $this.attr( 'href' ) ) { + var $parent = $this.parent( 'li' ), + el = $parent.clone(); + $this.removeAttr( 'data-ls_linkto' ); + $parent.removeClass( 'sidr-class-local-scroll' ); + el.removeClass( 'sidr-class-menu-item-has-children sidr-class-dropdown' ); + el.find( 'a' ).removeClass(); + el.find( 'ul, .sidr-class-dropdown-toggle' ).remove().end().prependTo( $this.next( 'ul' ) ); + } + + } ); + + // Re-name font Icons to correct classnames + $( "[class*='sidr-class-fa']", $sidrMain ).attr( 'class', + function( i, c ) { + c = c.replace( 'sidr-class-fa', 'fa' ); + c = c.replace( 'sidr-class-fa-', 'fa-' ); + return c; + } ); + + // Close sidr when clicking toggle + $( '.sidr-class-wpex-close > a', $sidrMain ).on( 'click', function( e ) { + e.preventDefault(); + $.sidr( 'close', 'sidr-main' ); + } ); + + // Close on resize past mobile menu breakpoint + self.config.$window.resize( function() { + if ( self.config.viewportWidth >= self.config.mobileMenuBreakpoint ) { + $.sidr( 'close', 'sidr-main' ); + } + } ); + + // Close sidr when clicking local scroll link + $( 'li.sidr-class-local-scroll > a', $sidrMain ).click( function() { + var $hash = this.hash; + if ( $.inArray( $hash, self.config.localScrollSections ) > -1 ) { + $.sidr( 'close', 'sidr-main' ); + self.scrollTo( $hash ); + return false; + } + } ); + + // Remove mobile menu alternative if on page to prevent duplicate links + if ( $( '#mobile-menu-alternative' ).length ) { + $( '#mobile-menu-alternative' ).remove(); + } + + }, + + /** + * Toggle Mobile Menu + * + * @since 3.6.0 + */ + mobileMenuToggle: function() { + + var self = this, + $position = wpexLocalize.mobileToggleMenuPosition, + $classes = 'mobile-toggle-nav wpex-mobile-menu wpex-clr wpex-togglep-'+ $position, + $mobileMenuContents = '', + $mobileSearch = $( '#mobile-menu-search' ), + $appendTo = self.config.$siteHeader, + $toggleBtn = $( 'a.mobile-menu-toggle, li.mobile-menu-toggle > a' ); + + // Insert nav in fixed_top mobile menu + if ( 'fixed_top' == self.config.mobileMenuToggleStyle ) { + $appendTo = $( '#wpex-mobile-menu-fixed-top' ); + if ( $appendTo.length ) { + $appendTo.append( '' ); + } + } + + // Absolute position + else if ( 'absolute' == $position ) { + if ( 'navbar' == self.config.mobileMenuToggleStyle ) { + $appendTo = $( '#wpex-mobile-menu-navbar' ); + if ( $appendTo.length ) { + $appendTo.append( '' ); + } + } else if ( $appendTo ) { + $appendTo.append( '' ); + } + } + + // Insert afterSelf + else if ( 'afterself' == $position ) { + + $appendTo = $( '#wpex-mobile-menu-navbar' ); + + $( '' ).insertAfter( $appendTo ); + + // Normal toggle insert (static) + } else { + $( '' ).insertAfter( $appendTo ); + } + + // Store Nav in cache + var $mobileToggleNav = $( '.mobile-toggle-nav' ); + + // Grab all content from menu and add into mobile-toggle-nav element + if ( $( '#mobile-menu-alternative' ).length ) { + $mobileMenuContents = $( '#mobile-menu-alternative .dropdown-menu' ).html(); + $( '#mobile-menu-alternative' ).remove(); + } else { + $mobileMenuContents = $( '.dropdown-menu', self.config.$siteNav ).html(); + } + $mobileToggleNav.html( '
    ' + $mobileMenuContents + '
' ); + + // Remove all styles + $( '.mobile-toggle-nav-ul, .mobile-toggle-nav-ul *' ).children().each( function() { + $( this ).removeAttr( 'style' ); + } ); + + // Add classes where needed + $( '.mobile-toggle-nav-ul' ).addClass( 'container' ); + + // Loop through parent items and add to dropdown if they have a link + var parseDropParents = false; + if ( ! parseDropParents ) { + + var $parents = $mobileToggleNav.find( 'li.menu-item-has-children > a' ); + + $parents.each( function() { + + var $this = $( this ); + + if ( $this && $this.attr( 'href' ) && '#' != $this.attr( 'href' ) ) { + var $parent = $this.parent( 'li' ), + el = $parent.clone(); + $parent.removeClass( 'local-scroll' ); + $this.removeAttr( 'data-ls_linkto' ); + el.removeClass( 'menu-item-has-children' ); + el.find( 'ul, .wpex-open-submenu' ).remove().end().prependTo( $this.next( 'ul' ) ); + } + + } ); + + parseDropParents = true; + + } + + // Add toggles + var dropDownParents = $mobileToggleNav.find( '.menu-item-has-children' ); + + dropDownParents.children( 'a' ).append( '' ); + + // Add toggle click event + var $dropdownTargetEl = $dropdownTargetEl = $( '.menu-item-has-children > a', $mobileToggleNav ); + $dropdownTargetEl.on( 'click', function( event ) { + + var $parentEl = $( this ).parent( 'li' ); + + if ( ! $parentEl.hasClass( 'active' ) ) { + var $allParentLis = $parentEl.parents( 'li' ); + $( '.menu-item-has-children', $mobileToggleNav ) + .not( $allParentLis ) + .removeClass( 'active' ) + .children( 'ul' ) + .stop( true, true ) + .slideUp( 'fast' ); + $parentEl.addClass( 'active' ).children( 'ul' ).stop( true, true ).slideDown( 'fast' ); + } else { + $parentEl.removeClass( 'active' ); + $parentEl.find( 'li' ).removeClass( 'active' ); // Remove active from sub-drops + $parentEl.find( 'ul' ).stop( true, true ).slideUp( 'fast' ); // Hide all drops + } + + return false; + + } ); + + // On Show + function openToggle( $button ) { + if ( wpexLocalize.animateMobileToggle ) { + $mobileToggleNav.stop( true, true ).slideDown( 'fast' ).addClass( 'visible' ); + } else { + $mobileToggleNav.addClass( 'visible' ); + } + $button.addClass( 'wpex-active' ); + } + + // On Close + function closeToggle( $button ) { + if ( wpexLocalize.animateMobileToggle ) { + $mobileToggleNav.stop( true, true ).slideUp( 'fast' ).removeClass( 'visible' ); + } else { + $mobileToggleNav.removeClass( 'visible' ); + } + $mobileToggleNav.find( 'li.active > ul' ).stop( true, true ).slideUp( 'fast' ); + $mobileToggleNav.find( '.active' ).removeClass( 'active' ); + $button.removeClass( 'wpex-active' ); + } + + // Show/Hide + $toggleBtn.on( 'click', function( e ) { + if ( $mobileToggleNav.hasClass( 'visible' ) ) { + closeToggle( $( this ) ); + } else { + openToggle( $( this ) ); + } + return false; + } ); + + // Close on resize + self.config.$window.resize( function() { + if ( self.config.viewportWidth >= self.config.mobileMenuBreakpoint && $mobileToggleNav.hasClass( 'visible' ) ) { + closeToggle( $toggleBtn ); + } + } ); + + // Add search to toggle menu + if ( $mobileSearch.length ) { + $mobileToggleNav.append( '' ); + $( '.mobile-toggle-nav-search' ).append( $mobileSearch ); + } + + }, + + /** + * Overlay Mobile Menu + * + * @since 3.6.0 + */ + mobileMenuFullScreen: function() { + var self = this, + $style = wpexLocalize.fullScreenMobileMenuStyle ? wpexLocalize.fullScreenMobileMenuStyle : false, // prevent undefined class + $mobileSearch = $( '#mobile-menu-search' ), + $menuHTML = ''; + + // Insert new nav + self.config.$body.append( '
×
' ); + + var $navUL = $( '.full-screen-overlay-nav-ul' ); + + // Grab all content from menu and add into mobile-toggle-nav element + if ( $( '#mobile-menu-alternative' ).length ) { + $menuHTML = $( '#mobile-menu-alternative .dropdown-menu' ).html(); + $( '#mobile-menu-alternative' ).remove(); + } else { + $menuHTML = $( '#site-navigation .dropdown-menu' ).html(); + } + $navUL.html( $menuHTML ); + + // Cache element + var $nav = $( '.full-screen-overlay-nav' ); + + // Remove all styles + $( '.full-screen-overlay-nav, .full-screen-overlay-nav *' ).children().each( function() { + $( this ).removeAttr( 'style' ); + } ); + + // Loop through parent items and add to dropdown if they have a link + var parseDropParents = false; + if ( ! parseDropParents ) { + + var $parents = $nav.find( 'li.menu-item-has-children > a' ); + + $parents.each( function() { + + var $this = $( this ); + + if ( $this && $this.attr( 'href' ) && '#' != $this.attr( 'href' ) ) { + var $parent = $this.parent( 'li' ), + el = $parent.clone(); + $parent.removeClass( 'local-scroll' ); + $this.removeAttr( 'data-ls_linkto' ); + el.removeClass( 'menu-item-has-children' ); + el.find( 'ul' ).remove().end().prependTo( $this.next( 'ul' ) ); + } + + } ); + + parseDropParents = true; + + } + + // Add toggle click event + var $dropdownTargetEl = $nav.find( 'li.menu-item-has-children > a' ); + $dropdownTargetEl.on( 'click', function( event ) { + + var $parentEl = $( this ).parent( 'li' ); + + if ( ! $parentEl.hasClass( 'wpex-active' ) ) { + var $allParentLis = $parentEl.parents( 'li' ); + $nav.find( '.menu-item-has-children' ) + .not( $allParentLis ) + .removeClass( 'wpex-active' ) + .children( 'ul' ) + .stop( true, true ) + .slideUp( 'fast' ); + $parentEl.addClass( 'wpex-active' ).children( 'ul' ).stop( true, true ).slideDown( { + duration: 'normal', + easing: 'easeInQuad' + } ); + } else { + $parentEl.removeClass( 'wpex-active' ); + $parentEl.find( 'li' ).removeClass( 'wpex-active' ); // Remove active from sub-drops + $parentEl.find( 'ul' ).stop( true, true ).slideUp( 'fast' ); // Hide all drops + } + + // Return false + return false; + + } ); + + // Show + $( '.mobile-menu-toggle' ).on( 'click', function() { + $nav.addClass( 'visible' ); + self.config.$body.addClass( 'wpex-noscroll' ); + return false; + } ); + + // Hide overlay when clicking local scroll links + $( '.local-scroll > a', $nav ).click( function() { + var $hash = this.hash; + if ( $.inArray( $hash, self.config.localScrollSections ) > -1 ) { + $nav.removeClass( 'visible' ); + self.config.$body.removeClass( 'wpex-noscroll' ); + return false; + } + } ); + + // Hide when clicking close button + $( '.full-screen-overlay-nav-close' ).on( 'click', function() { + $nav.removeClass( 'visible' ); + $nav.find( 'li.wpex-active > ul' ).stop( true, true ).slideUp( 'fast' ); + $nav.find( '.wpex-active' ).removeClass( 'wpex-active' ); + self.config.$body.removeClass( 'wpex-noscroll' ); + return false; + } ); + + // Add search to toggle menu + if ( $mobileSearch.length ) { + $navUL.append( $mobileSearch ); + $( '#mobile-menu-search' ).wrap( '' ); + } + + }, + + /** + * Prevent clickin on links + * + * @since 2.0.0 + */ + navNoClick: function() { + $( 'li.nav-no-click > a, li.sidr-class-nav-no-click > a' ).on( 'click', function() { + return false; + } ); + }, + + /** + * Header Search + * + * @since 2.0.0 + */ + menuSearch: function() { + var self = this; + var $toggleEl = ''; + var $wrapEl = $( '.header-searchform-wrap' ); + + // Alter search placeholder & autocomplete + if ( $wrapEl.length ) { + if ( $wrapEl.data( 'placeholder' ) ) { + $wrapEl.find( 'input[type="search"]' ).attr( 'placeholder', $wrapEl.data( 'placeholder' ) ); + } + if ( $wrapEl.data( 'disable-autocomplete' ) ) { + $wrapEl.find( 'input[type="search"]' ).attr( 'autocomplete', 'off' ) + } + } + + /**** Menu Search > Dropdown ****/ + if ( 'drop_down' == wpexLocalize.menuSearchStyle ) { + + $toggleEl = $( 'a.search-dropdown-toggle, a.mobile-menu-search' ); + var $searchDropdownForm = $( '#searchform-dropdown' ); + + $toggleEl.click( function( event ) { + + // Display search form + $searchDropdownForm.toggleClass( 'show' ); + + // Active menu item + $( this ).parent( 'li' ).toggleClass( 'active' ); + + // Focus + var $transitionDuration = $searchDropdownForm.css( 'transition-duration' ); + $transitionDuration = $transitionDuration.replace( 's', '' ) * 1000; + if ( $transitionDuration ) { + setTimeout( function() { + $searchDropdownForm.find( 'input[type="search"]' ).focus(); + }, $transitionDuration ); + } + + // Hide other things + $( 'div#current-shop-items-dropdown' ).removeClass( 'show' ); + $( 'li.wcmenucart-toggle-dropdown' ).removeClass( 'active' ); + + // Return false + return false; + + } ); + + // Close on doc click + self.config.$document.on( 'click', function( event ) { + if ( ! $( event.target ).closest( '#searchform-dropdown.show' ).length ) { + $toggleEl.parent( 'li' ).removeClass( 'active' ); + $searchDropdownForm.removeClass( 'show' ); + } + } ); + + } + + /**** Menu Search > Overlay Modal ****/ + else if ( 'overlay' == wpexLocalize.menuSearchStyle ) { + + $toggleEl = $( 'a.search-overlay-toggle, a.mobile-menu-search, li.search-overlay-toggle > a' ); + var $overlayEl = $( '#wpex-searchform-overlay' ); + var $inner = $overlayEl.find( '.wpex-inner' ); + + $toggleEl.on( 'click', function( event ) { + $overlayEl.toggleClass( 'active' ); + $overlayEl.find( 'input[type="search"]' ).val( '' ); + if ( $overlayEl.hasClass( 'active' ) ) { + var $overlayElTransitionDuration = $overlayEl.css( 'transition-duration' ); + $overlayElTransitionDuration = $overlayElTransitionDuration.replace( 's', '' ) * 1000; + setTimeout( function() { + $overlayEl.find( 'input[type="search"]' ).focus(); + }, $overlayElTransitionDuration ); + } + return false; + } ); + + // Close searchforms + $inner.click( function( event ) { + event.stopPropagation(); + } ); + $overlayEl.click( function() { + $overlayEl.removeClass( 'active' ); + } ); + + } + + /**** Menu Search > Header Replace ****/ + else if ( 'header_replace' == wpexLocalize.menuSearchStyle ) { + + $toggleEl = $( 'a.search-header-replace-toggle, a.mobile-menu-search' ); + var $headerReplace = $( '#searchform-header-replace' ); + + // Show + $toggleEl.click( function( event ) { + + // Display search form + $headerReplace.toggleClass( 'show' ); + + // Focus + var $transitionDuration = $headerReplace.css( 'transition-duration' ); + $transitionDuration = $transitionDuration.replace( 's', '' ) * 1000; + if ( $transitionDuration ) { + setTimeout( function() { + $headerReplace.find( 'input[type="search"]' ).focus(); + }, $transitionDuration ); + } + + // Return false + return false; + + } ); + + // Close on click + $( '#searchform-header-replace-close' ).click( function() { + $headerReplace.removeClass( 'show' ); + return false; + } ); + + // Close on doc click + self.config.$document.on( 'click', function( event ) { + if ( ! $( event.target ).closest( $( '#searchform-header-replace.show' ) ).length ) { + $headerReplace.removeClass( 'show' ); + } + } ); + } + + }, + + /** + * Header Cart + * + * @since 2.0.0 + */ + headerCart: function() { + + if ( $( 'a.wcmenucart' ).hasClass( 'go-to-shop' ) ) { + return; + } + + var $toggle = $( '.toggle-cart-widget, li.toggle-header-cart > a' ); + if ( ! $toggle.length ) return; + + // Drop-down + if ( 'drop_down' == wpexLocalize.wooCartStyle ) { + + var $dropdown = $( 'div#current-shop-items-dropdown' ); + if ( ! $dropdown.length ) return; + + // Display cart dropdown + $toggle.click( function() { + $( '#searchform-dropdown' ).removeClass( 'show' ); + $( 'a.search-dropdown-toggle' ).parent( 'li' ).removeClass( 'active' ); + $dropdown.toggleClass( 'show' ); + $( this ).toggleClass( 'active' ); + return false; + } ); + + // Hide cart dropdown + $dropdown.click( function( event ) { + event.stopPropagation(); + } ); + this.config.$document.click( function() { + $dropdown.removeClass( 'show' ); + $toggle.removeClass( 'active' ); + } ); + + /* Prevent body scroll on current shop dropdown - seems buggy... + $( '#current-shop-items-dropdown' ).bind( 'mousewheel DOMMouseScroll', function ( e ) { + var e0 = e.originalEvent, + delta = e0.wheelDelta || -e0.detail; + this.scrollTop += ( delta < 0 ? 1 : -1 ) * 30; + e.preventDefault(); + } );*/ + + } + + // Modal + else if ( 'overlay' == wpexLocalize.wooCartStyle ) { + + var $overlayEl = $( '#wpex-cart-overlay' ); + var $inner = $overlayEl.find( '.wpex-inner' ); + + $toggle.on( 'click', function( event ) { + $overlayEl.toggleClass( 'active' ); + return false; + } ); + + // Close searchforms + $inner.click( function( event ) { + event.stopPropagation(); + } ); + $overlayEl.click( function() { + $overlayEl.removeClass( 'active' ); + } ); + + } + + }, + + /** + * Automatically add padding to row to offset header + * + * @since 3.6.0 + */ + headerOverlayOffset: function() { + var $offset_element = $( '.add-overlay-header-offset' ); + if ( $offset_element.length ) { + var self = this; + var $height = self.config.siteHeaderHeight; + if ( ! $height ) return; + var $offset = $( '
' ); + $offset_element.prepend( $offset ); + self.config.$window.resize( function() { + $offset.css( 'height', self.config.siteHeaderHeight ); + } ); + } + }, + + /** + * Relocate the cart for specific header styles + * + * @todo remove if possible + * @since 2.0.0 + */ + cartDropdownRelocate: function() { + + // Validate first + if ( this.config.hasHeaderOverlay + || ! this.config.$siteHeader + || ! this.config.$siteHeader.hasClass( 'wpex-reposition-cart-search-drops' ) + ) { + return; + } + + // Get last menu item + var $lastMenuItem = $( '.dropdown-menu > li:nth-last-child(1)', this.config.$siteNav ); + if ( ! $lastMenuItem.length ) { + return; + } + + // Define vars + var $shopDrop = $( '#current-shop-items-dropdown' ); + var $lastMenuItemOffset = $lastMenuItem.position(); + var $leftPosition = ''; + + // Position Woo dropdown + if ( $shopDrop.length ) { + + if ( wpexLocalize.isRTL ) { + + $leftPosition = $lastMenuItemOffset.left; + + } else { + + $leftPosition = $lastMenuItemOffset.left - $shopDrop.outerWidth() + $lastMenuItem.width(); + + } + + $shopDrop.css( { + 'right' : 'auto', + 'left' : $leftPosition + } ); + + } + + }, + + /** + * Hide post edit link + * + * @since 2.0.0 + */ + hideEditLink: function() { + $( 'a.hide-post-edit', $( '#content' ) ).click( function() { + $( 'div.post-edit' ).hide(); + return false; + } ); + }, + + /** + * Custom menu widget accordion + * + * @since 4.5.4.2 + */ + menuWidgetAccordion: function() { + + if ( ! wpexLocalize.menuWidgetAccordion ) { + return; + } + + var self = this; + + // Open toggle for active page + $( '#sidebar .widget_nav_menu .current-menu-ancestor, .widget_nav_menu_accordion .widget_nav_menu .current-menu-ancestor', self.config.$siteMain ).addClass( 'active' ).children( 'ul' ).show(); + + // Toggle items + $( '#sidebar .widget_nav_menu, .widget_nav_menu_accordion .widget_nav_menu', self.config.$siteMain ).each( function() { + var $hasChildren = $( this ).find( '.menu-item-has-children' ); + $hasChildren.each( function() { + $( this ).addClass( 'parent' ); + var $links = $( this ).children( 'a' ); + $links.on( 'click', function( event ) { + var $linkParent = $( this ).parent( 'li' ); + var $allParents = $linkParent.parents( 'li' ); + if ( ! $linkParent.hasClass( 'active' ) ) { + $hasChildren.not( $allParents ).removeClass( 'active' ).children( '.sub-menu' ).slideUp( 'fast' ); + $linkParent.addClass( 'active' ).children( '.sub-menu' ).stop( true, true ).slideDown( 'fast' ); + } else { + $linkParent.removeClass( 'active' ).children( '.sub-menu' ).stop( true, true ).slideUp( 'fast' ); + } + return false; + } ); + } ); + } ); + + }, + + /** + * Header 5 - Inline Logo + * + * @since 2.0.0 + */ + inlineHeaderLogo: function() { + var self = this; + + // For header 5 only + if ( 'five' != self.config.siteHeaderStyle ) return; + + // Define vars + var $headerLogo = $( '#site-header-inner > .header-five-logo', self.config.$siteHeader ); + var $headerNav = $( '.navbar-style-five', self.config.$siteHeader ); + var $navLiCount = $headerNav.children( '#site-navigation' ).children( 'ul' ).children( 'li' ).size(); + var $navBeforeMiddleLi = Math.round( $navLiCount / 2 ) - parseInt( wpexLocalize.headerFiveSplitOffset ); + var $centeredLogo = $( '.menu-item-logo .header-five-logo' ); + + // Add logo into menu + if ( this.config.viewportWidth > this.config.mobileMenuBreakpoint && $headerLogo.length && $headerNav.length ) { + $( '' ).insertAfter( $headerNav.find( '#site-navigation > ul > li:nth( '+ $navBeforeMiddleLi +' )' ) ); + $headerLogo.appendTo( $headerNav.find( '.menu-item-logo' ) ); + } + + // Remove logo from menu and add to header + if ( this.config.viewportWidth < this.config.mobileMenuBreakpoint && $centeredLogo.length ) { + $centeredLogo.prependTo( $( '#site-header-inner' ) ); + $( '.menu-item-logo' ).remove(); + } + + // Add display class to logo (hidden by default) + $headerLogo.addClass( 'display' ); + + }, + + /** + * Back to top link + * + * @since 2.0.0 + */ + backTopLink: function() { + var self = this; + var $scrollTopLink = $( 'a#site-scroll-top' ); + + if ( $scrollTopLink.length ) { + + var $speed = wpexLocalize.scrollTopSpeed ? parseInt( wpexLocalize.scrollTopSpeed ) : 1000; + var $offset = wpexLocalize.scrollTopOffset ? parseInt( wpexLocalize.scrollTopOffset ) : 100; + + self.config.$window.scroll( function() { + if ( $( this ).scrollTop() > $offset ) { + $scrollTopLink.addClass( 'show' ); + } else { + $scrollTopLink.removeClass( 'show' ); + } + } ); + + $scrollTopLink.on( 'click', function( event ) { + $( 'html, body' ).stop( true, true ).animate( { + scrollTop : 0 + }, $speed, self.config.localScrollEasing ); + return false; + } ); + + } + + }, + + /** + * Smooth Comment Scroll + * + * @since 2.0.0 + */ + smoothCommentScroll: function() { + var self = this; + $( '.single li.comment-scroll a' ).click( function( event ) { + var $target = $( '#comments' ); + var $offset = $target.offset().top - self.config.localScrollOffset - 20; + self.scrollTo( $target, $offset ); + return false; + } ); + }, + + /** + * Tooltips + * + * @since 2.0.0 + */ + tipsyTooltips: function() { + + $( 'a.tooltip-left' ).tipsy( { + fade : true, + gravity : 'e' + } ); + + $( 'a.tooltip-right' ).tipsy( { + fade : true, + gravity : 'w' + } ); + + $( 'a.tooltip-up' ).tipsy( { + fade : true, + gravity : 's' + } ); + + $( 'a.tooltip-down' ).tipsy( { + fade : true, + gravity : 'n' + } ); + + }, + + + /** + * Responsive Text + * Inspired by FlowType.JS + * + * @since 3.2.0 + */ + responsiveText: function() { + var self = this; + var $responsiveText = $( '.wpex-responsive-txt' ); + $responsiveText.each( function() { + var $this = $( this ); + var $thisWidth = $this.width(); + var $data = $this.data(); + var $minFont = self.parseData( $data.minFontSize, 13 ); + var $maxFont = self.parseData( $data.maxFontSize, 40 ); + var $ratio = self.parseData( $data.responsiveTextRatio, 10 ); + var $fontBase = $thisWidth / $ratio; + var $fontSize = $fontBase > $maxFont ? $maxFont : $fontBase < $minFont ? $minFont : $fontBase; + $this.css( 'font-size', $fontSize + 'px' ); + } ); + }, + + /** + * Togglebar toggle + * + * @since 2.0.0 + */ + toggleBar: function() { + + var self = this; + var $toggleBtn = $( 'a.toggle-bar-btn, a.togglebar-toggle, .togglebar-toggle > a' ); + var $toggleBarWrap = $( '#toggle-bar-wrap' ); + + if ( $toggleBtn.length && $toggleBarWrap.length ) { + + $toggleBtn.on( 'click', function( event ) { + var $fa = $( '.toggle-bar-btn' ).find( '.fa' ); + if ( $fa.length ) { + $fa.toggleClass( $toggleBtn.data( 'icon' ) ); + $fa.toggleClass( $toggleBtn.data( 'icon-hover' ) ); + } + $toggleBarWrap.toggleClass( 'active-bar' ); + return false; + } ); + + // Close on doc click + self.config.$document.on( 'click', function( event ) { + if ( ! $( event.target ).closest( '#toggle-bar-wrap.active-bar' ).length ) { + $toggleBarWrap.removeClass( 'active-bar' ); + var $fa = $toggleBtn.children( '.fa' ); + if ( $fa.length ) { + $fa.removeClass( $toggleBtn.data( 'icon-hover' ) ).addClass( $toggleBtn.data( 'icon' ) ); + } + } + } ); + + } + + }, + + /** + * Skillbar + * + * @since 2.0.0 + */ + skillbar: function( $context ) { + if ( undefined === $.fn.appear ) { + return; + } + $( '.vcex-skillbar', $context ).each( function() { + var $this = $( this ); + $this.appear( function() { + $this.find( '.vcex-skillbar-bar' ).animate( { + width: $( this ).attr( 'data-percent' ) + }, 800 ); + } ); + }, { + accX : 0, + accY : 0 + } ); + }, + + /** + * Milestones + * + * @since 2.0.0 + */ + milestone: function( $context ) { + + if ( typeof CountUp !== 'function' || undefined === $.fn.appear ) { + return; + } + + $( '.vcex-countup', $context ).each( function() { + + var $this = $( this ), + data = $this.data( 'options' ), + startVal = data.startVal, + endVal = data.endVal, + decimals = data.decimals, + duration = data.duration; + + var options = { + useEasing : true, + useGrouping : true, + separator : data.separator, + decimal : data.decimal, + prefix : '', + suffix : '' + }; + + var numAnim = new CountUp( this, startVal, endVal, decimals, duration, options ); + + // No need to show on appear when in context + if ( $context ) { + numAnim.start(); + return; + } + + $this.appear( function() { + numAnim.start(); + } ); + + } ); + }, + + /** + * Before/After Image (twenty twenty) + * + * @since 4.3 + */ + twentytwenty: function( $context ) { + if ( undefined === $.fn.twentytwenty || undefined === $.fn.imagesLoaded ) { + return; + } + $( '.vcex-image-ba', $context ).each( function() { + var $this = $( this ); + $this.imagesLoaded( function() { + $this.twentytwenty( $this.data( 'options' ) ); + } ); + } ); + }, + + /** + * Countdown + * + * @since 2.0.0 + */ + countdown: function( $context ) { + if ( undefined === $.fn.countdown ) { + return; + } + $( '.vcex-countdown', $context ).each( function() { + + var $this = $( this ), + endDate = $this.data( 'countdown' ), + days = $this.data( 'days' ), + hours = $this.data( 'hours' ), + minutes = $this.data( 'minutes' ), + seconds = $this.data( 'seconds' ), + timezone = $this.data( 'timezone' ); + + if ( timezone && typeof moment.tz !== 'undefined' && $.isFunction( moment.tz ) ) { + endDate = moment.tz( endDate, timezone ).toDate(); + } + + if ( ! endDate ) { + return; + } + + $this.countdown( endDate, function( event ) { + $this.html( event.strftime( '
%-D ' + days + '
%-H ' + hours + '
%-M ' + minutes + '
%-S ' + seconds + '
' ) ); + } ); + + } ); + }, + + /** + * Typed Text + * + * @since 2.0.0 + */ + typedText: function( $context ) { + if ( typeof Typed !== 'function' || undefined === $.fn.appear ) { + return; + } + $( '.vcex-typed-text', $context ).each( function() { + var $this = $( this ); + var $settings = $this.data( 'settings' ); + $this.appear( function() { + $settings.typeSpeed = parseInt( $settings.typeSpeed ); + $settings.backDelay = parseInt( $settings.backDelay ); + $settings.backSpeed = parseInt( $settings.backSpeed ); + $settings.startDelay = parseInt( $settings.startDelay ); + $settings.strings = $this.data( 'strings' ); + var typed = new Typed( this, $settings ); + } ); + } ); + }, + + /** + * Advanced Parallax + * + * @since 2.0.0 + */ + parallax: function( $context ) { + $( '.wpex-parallax-bg', $context ).each( function() { + var $this = $( this ); + $this.scrolly2().trigger( 'scroll' ); + $this.css( { + 'opacity' : 1 + } ); + } ); + }, + + /** + * Local Scroll Offset + * + * @since 2.0.0 + */ + parseLocalScrollOffset: function( instance ) { + var self = this; + var $offset = 0; + + // Return custom offset + if ( wpexLocalize.localScrollOffset ) { + return wpexLocalize.localScrollOffset; + } + + // Adds extra offset via filter + if ( wpexLocalize.localScrollExtraOffset ) { + $offset = $offset + parseInt( wpexLocalize.localScrollExtraOffset ); + } + + // Add wp toolbar + if ( $( '#wpadminbar' ).is( ':visible' ) ) { + $offset = parseInt( $offset ) + parseInt( $( '#wpadminbar' ).outerHeight() ); + } + + // Fixed Mobile menu + if ( 'fixed_top' == self.config.mobileMenuToggleStyle ) { + var $mmFixed = $( '#wpex-mobile-menu-fixed-top' ); + if ( $mmFixed.length && $mmFixed.is( ':visible' ) ) { + $offset = parseInt( $offset ) + parseInt( $mmFixed.outerHeight() ); + } + } + + // Add sticky topbar height offset + if ( self.config.hasStickyTopBar ) { + $offset = parseInt( $offset ) + parseInt( self.config.$stickyTopBar.outerHeight() ); + } + + // Fixed header + if ( self.config.hasStickyHeader ) { + + // Return 0 for small screens if mobile fixed header is disabled + if ( ! self.config.hasStickyMobileHeader && self.config.windowWidth <= wpexLocalize.stickyHeaderBreakPoint ) { + $offset = parseInt( $offset ) + 0; + } + + // Return header height + else { + + // Shrink header + if ( self.config.$siteHeader.hasClass( 'shrink-sticky-header' ) ) { + if ( 'init' == instance || self.config.$siteHeader.is( ':visible' ) ) { + $offset = parseInt( $offset ) + parseInt( wpexLocalize.shrinkHeaderHeight ); + } + } + + // Standard header + else { + $offset = parseInt( $offset ) + parseInt( self.config.siteHeaderHeight ); + } + + } + + } + + // Fixed Nav + if ( self.config.hasStickyNavbar ) { + if ( self.config.viewportWidth >= wpexLocalize.stickyNavbarBreakPoint ) { + $offset = parseInt( $offset ) + parseInt( self.config.$siteNavWrap.outerHeight() ); + } + } + + // VCEX Navbar module + var $vcexNavbarSticky = $( '.vcex-navbar-sticky' ); + if ( $vcexNavbarSticky.length ) { + $offset = parseInt( $offset ) + parseInt( $vcexNavbarSticky.outerHeight() ); + } + + // Add 1 extra decimal to prevent cross browser rounding issues (mostly firefox) + $offset = $offset ? $offset - 1 : 0; + + //console.log( $offset ); + + // Return offset + return $offset; + + }, + + /** + * Scroll to function + * + * @since 2.0.0 + */ + scrollTo: function( hash, offset, callback ) { + + // Hash is required + if ( ! hash ) { + return; + } + + // Define important vars + var self = this; + var $target = null; + var $page = $( 'html, body' ); + var $isLsDataLink = false; + + // Check for target in data attributes + var $lsTarget = $( '[data-ls_id="'+ hash +'"]' ); + + if ( $lsTarget.length ) { + $target = $lsTarget; + $isLsDataLink = true; + } + + // Check for straight up element with ID + else { + if ( typeof hash == 'string' ) { + $target = $( hash ); + } else { + $target = hash; + } + } + + // Target check + if ( $target.length ) { + + // LocalScroll vars + var $lsSpeed = self.config.localScrollSpeed ? parseInt( self.config.localScrollSpeed ) : 1000, + $lsOffset = self.config.localScrollOffset, + $lsEasing = self.config.localScrollEasing; + + // Sanitize offset + offset = offset ? offset : $target.offset().top - $lsOffset; + + // Update hash + if ( hash && $isLsDataLink && wpexLocalize.localScrollUpdateHash ) { + window.location.hash = hash; + } + + /* Remove hash on site top click + if ( '#site_top' == hash && wpexLocalize.localScrollUpdateHash && window.location.hash ) { + history.pushState( '', document.title, window.location.pathname); + }*/ + + // Mobile toggle Menu needs it's own code so it closes before the event fires + // to make sure we end up in the right place + var $mobileToggleNav = $( '.mobile-toggle-nav' ); + if ( $mobileToggleNav.hasClass( 'visible' ) ) { + $( 'a.mobile-menu-toggle, li.mobile-menu-toggle > a' ).removeClass( 'wpex-active' ); + if ( wpexLocalize.animateMobileToggle ) { + $mobileToggleNav.slideUp( 'fast', function() { + $mobileToggleNav.removeClass( 'visible' ); + $page.stop( true, true ).animate( { + scrollTop: $target.offset().top - $lsOffset + }, $lsSpeed ); + } ); + } else { + $mobileToggleNav.hide().removeClass( 'visible' ); + $page.stop( true, true ).animate( { + scrollTop: $target.offset().top - $lsOffset + }, $lsSpeed ); + } + } + + // Scroll to target + else { + $page.stop( true, true ).animate( { + scrollTop: offset + }, $lsSpeed, $lsEasing ); + } + + } + + }, + + /** + * Scroll to Hash + * + * @since 2.0.0 + */ + scrollToHash: function( self ) { + + var hash = location.hash; + var $target = ''; + var $offset = ''; + + // Hash needed + if ( ! hash ) { + return; + } + + // Scroll to comments + if ( '#view_comments' == hash || '#comments_reply' == hash ) { + $target = $( '#comments' ); + $offset = $target.offset().top - self.config.localScrollOffset - 20; + if ( $target.length ) { + self.scrollTo( $target, $offset ); + } + return; + } + + // Scroll to specific comment, fix for sticky header + if ( self.config.hasStickyHeader && hash.indexOf( 'comment-' ) != -1 ) { + $target = $( hash ); + $offset = $target.offset().top - self.config.localScrollOffset - 20; + self.scrollTo( $target, $offset ); + return; + } + + + // Scroll to hash for localscroll links + if ( hash.indexOf( 'localscroll-' ) != -1 ) { + self.scrollTo( hash.replace( 'localscroll-', '' ) ); + return; + } + + // Check elements with data attributes + if ( $( '[data-ls_id="'+ hash +'"]' ).length ) { + self.scrollTo( hash ); + return; + } + + }, + + /** + * Local scroll links array + * + * @since 2.0.0 + */ + localScrollSections: function() { + var self = this; + + // Add local-scroll class to links in menu with localscroll- prefix (if on same page) + // And add to $localScrollTargets + // And add data-ls_linkto attr + if ( self.config.$siteNav ) { + + var $navLinks = $( 'a', this.config.$siteNav ); + var $location = location; + var $currentPage = $location.href; + + // Sanitize current page var + $currentPage = $location.hash ? $currentPage.substr( 0, $currentPage.indexOf( '#' ) ) : $currentPage; + + // Loop through nav links + $navLinks.each( function() { + var $this = $( this ); + var $ref = $this.attr( 'href' ); + if ( $ref && $ref.indexOf( 'localscroll-' ) != -1 ) { + $this.parent( 'li' ).addClass( 'local-scroll' ); + var $withoutHash = $ref.substr( 0, $ref.indexOf( '#' ) ); + if ( $withoutHash == $currentPage ) { + var $hash = $ref.substring( $ref.indexOf( '#' ) + 1 ); + var $parseHash = $hash.replace( 'localscroll-', '' ); + $this.attr( 'data-ls_linkto', '#' + $parseHash ); + } + } + } ); + + } + + // Define main vars + var $array = []; + var $links = $( self.config.$localScrollTargets ); + + // Loop through links + for ( var i=0; i < $links.length; i++ ) { + + // Add to array and save hash + var $link = $links[i]; + var $linkDom = $( $link ); + var $href = $( $link ).attr( 'href' ); + var $hash = $href ? '#' + $href.replace( /^.*?(#|$)/, '' ) : null; + + // Hash required + if ( $hash && '#' != $hash ) { + + // Add custom data attribute to each + if ( ! $linkDom.attr( 'data-ls_linkto' ) ) { + $linkDom.attr( 'data-ls_linkto', $hash ); + } + + // Data attribute targets + if ( $( '[data-ls_id="'+ $hash +'"]' ).length ) { + if ( $.inArray( $hash, $array ) == -1 ) { + $array.push( $hash ); + } + } + + // Standard ID targets + else if ( $( $hash ).length ) { + if ( $.inArray( $hash, $array ) == -1 ) { + $array.push( $hash ); + } + } + + } + + } + + // Return array of local scroll links + return $array; + + }, + + /** + * Local Scroll link + * + * @since 2.0.0 + */ + localScrollLinks: function() { + var self = this; + + // Local Scroll - Menus + $( self.config.$localScrollTargets ).on( 'click', function() { + var $this = $( this ); + var $hash = $this.attr( 'data-ls_linkto' ); + $hash = $hash ? $hash : this.hash; // Fallback + if ( $.inArray( $hash, self.config.localScrollSections ) > -1 ) { + $this.parent().removeClass( 'sfHover' ); + self.scrollTo( $hash ); + return false; + } + } ); + + // Local Scroll - Logo + $( 'a.wpex-scroll-top, .wpex-scroll-top a' ).on( 'click', function() { + self.scrollTo( '#site_top' ); + return false; + } ); + + // Local Scroll - Woocommerce Reviews + $( 'a.woocommerce-review-link', $( 'body.single div.entry-summary' ) ).click( function() { + var $target = $( '.woocommerce-tabs' ); + if ( $target.length ) { + $( '.reviews_tab a' ).click(); + var $offset = $target.offset().top - self.config.localScrollOffset; + self.scrollTo( $target, $offset ); + } + return false; + } ); + + }, + + /** + * Local Scroll Highlight on scroll + * + * @since 2.0.0 + */ + localScrollHighlight: function() { + + // Return if disabled + if ( ! wpexLocalize.localScrollHighlight ) { + return; + } + + // Define main vars + var self = this, + localScrollSections = self.config.localScrollSections; + + // Return if there aren't any local scroll items + if ( ! localScrollSections.length ) { + return; + } + + // Define vars + var $windowPos = this.config.$window.scrollTop(), + $divPos, + $divHeight, + $higlight_link; + + // Highlight active items + for ( var i=0; i < localScrollSections.length; i++ ) { + + // Get section + var $section = localScrollSections[i]; + + // Data attribute targets + if ( $( '[data-ls_id="'+ $section +'"]' ).length ) { + var $targetDiv = $( '[data-ls_id="'+ $section +'"]' ); + $divPos = $targetDiv.offset().top - self.config.localScrollOffset - 1; + $divHeight = $targetDiv.outerHeight(); + $higlight_link = $( '[data-ls_linkto="'+ $section +'"]' ); + } + + // Standard element targets + else if ( $( $section ).length ) { + $divPos = $( $section ).offset().top - self.config.localScrollOffset - 1; + $divHeight = $( $section ).outerHeight(); + $higlight_link = $( '[data-ls_linkto="'+ $section +'"]' ); + } + + // Higlight items + if ( $windowPos >= $divPos && $windowPos < ( $divPos + $divHeight ) ) { + $( '.local-scroll.menu-item' ).removeClass( 'current-menu-item' ); // prevent any sort of duplicate local scroll active links + $higlight_link.addClass( 'active' ); + $higlight_link.parent( 'li' ).addClass( 'current-menu-item' ); + } else { + $higlight_link.removeClass( 'active' ); + $higlight_link.parent( 'li' ).removeClass( 'current-menu-item' ); + } + + } + + /* @todo: Highlight last item if at bottom of page or last item clicked - needs major testing now. + var $docHeight = this.config.$document.height(); + var windowHeight = this.config.windowHeight; + var $lastLink = localScrollSections[localScrollSections.length-1]; + if ( $windowPos + windowHeight == $docHeight ) { + $( '.local-scroll.current-menu-item' ).removeClass( 'current-menu-item' ); + $( "li.local-scroll a[href='" + $lastLink + "']" ).parent( 'li' ).addClass( 'current-menu-item' ); + }*/ + + }, + + /** + * Equal heights function => Must run before isotope method + * + * @since 2.0.0 + */ + equalHeights: function( $context ) { + + if ($.fn.wpexEqualHeights !== undefined) { + var container_block = $(window.wpexAnimsition.linkElement).parents(window.wpexAnimsition.container_block); + $(container_block, $context).wpexEqualHeights({ children: window.wpexAnimsition.children_text_block }); + } + + }, + + /** + * Footer Reveal Display on Load + * + * @since 2.0.0 + */ + footerReveal: function() { + var self = this; + + // Return if disabled + if ( ! self.config.$hasFooterReveal ) { + return; + } + + // Footer reveal + var $footerReveal = self.config.$footerReveal; + + function showHide() { + + // Disabled under 960 + if ( self.config.viewportWidth < 960 ) { + if ( $footerReveal.hasClass( 'footer-reveal' ) ) { + $footerReveal.toggleClass( 'footer-reveal footer-reveal-visible' ); + self.config.$siteWrap.css( 'margin-bottom', '' ); + } + return; + } + + var $hideFooter = false, + $footerRevealHeight = $footerReveal.outerHeight(), + windowHeight = self.config.windowHeight, + $heightCheck = 0; + + if ( $footerReveal.hasClass( 'footer-reveal' ) ) { + $heightCheck = self.config.$siteWrap.outerHeight() + self.config.localScrollOffset; + } else { + $heightCheck = self.config.$siteWrap.outerHeight() + self.config.localScrollOffset - $footerRevealHeight; + } + + // Check window height + if ( ( windowHeight > $footerRevealHeight ) && ( $heightCheck > windowHeight ) ) { + $hideFooter = true; + } + + // Footer Reveal + if ( $hideFooter && $footerReveal.hasClass( 'footer-reveal-visible' ) ) { + self.config.$siteWrap.css( { + 'margin-bottom': $footerRevealHeight + } ); + $footerReveal.removeClass( 'footer-reveal-visible' ); + $footerReveal.addClass( 'footer-reveal' ); + } + + // Visible Footer + if ( ! $hideFooter && $footerReveal.hasClass( 'footer-reveal' ) ) { + self.config.$siteWrap.css( 'margin-bottom', '' ); + $footerReveal.removeClass( 'footer-reveal' ); + $footerReveal.removeClass( 'wpex-visible' ); + $footerReveal.addClass( 'footer-reveal-visible' ); + } + + } + + function reveal() { + if ( $footerReveal.hasClass( 'footer-reveal' ) ) { + if ( self.scrolledToBottom( self.config.$siteMain ) ) { + $footerReveal.addClass( 'wpex-visible' ); + } else { + $footerReveal.removeClass( 'wpex-visible' ); + } + } + } + + // Fire on init + showHide(); + + // Fire onscroll event + self.config.$window.scroll( function() { + reveal(); + } ); + + // Fire onResize + self.config.$window.resize( function() { + if ( self.config.widthChanged || self.config.heightChanged ) { + showHide(); + } + } ); + + }, + + /** + * Set min height on main container to prevent issue with extra space below footer + * + * @since 3.1.1 + */ + fixedFooter: function() { + var self = this; + + // Checks + if ( ! self.config.$siteMain || ! self.config.hasFixedFooter ) { + return; + } + + function run() { + + // Set main vars + var $mainHeight = self.config.$siteMain.outerHeight(); + var $htmlHeight = $( 'html' ).height(); + + // Generate min Height + var $minHeight = $mainHeight + ( self.config.$window.height() - $htmlHeight ); + + // Add min height + self.config.$siteMain.css( 'min-height', $minHeight ); + + } + + // Run on doc ready + run(); + + // Run on resize + self.config.$window.resize( function() { + if ( self.config.widthChanged || self.config.heightChanged ) { + run(); + } + } ); + + }, + + /** + * If title and breadcrumbs don't both fit in the header switch breadcrumb style + * + * @since 3.5.0 + */ + titleBreadcrumbsFix: function() { + var self = this; + + // Return if disabled + if ( ! self.config.$body.hasClass( 'has-breadcrumbs' ) ) { + return; + } + + var $pageHeader = $( '.page-header' ); + var $crumbs = $( '.site-breadcrumbs.position-absolute', $pageHeader ); + if ( ! $crumbs.length || ! $crumbs.hasClass( 'has-js-fix' ) ) { + return; + } + + var $crumbsTrail = $( '.breadcrumb-trail', $crumbs ); + if ( ! $crumbsTrail.length ) { + return; + } + + var $headerInner = $( '.page-header-inner', $pageHeader ); + if ( ! $headerInner.length ) { + return; + } + + var $title = $( '.page-header-title > span', $headerInner ); + if ( ! $title.length ) { + return; + } + + function tweak_classes() { + if ( ( $title.width() + $crumbsTrail.width() + 20 ) >= $headerInner.width() ) { + if ( $crumbs.hasClass( 'position-absolute' ) ) { + $crumbs.removeClass( 'position-absolute' ); + $crumbs.addClass( 'position-under-title' ); + } + } else { + $crumbs.removeClass( 'position-under-title' ); + $crumbs.addClass( 'position-absolute' ); + } + } + + // Run on init + tweak_classes(); + + // Run on resize + self.config.$window.resize( function() { + tweak_classes(); + } ); + + }, + + /** + * Custom Selects + * + * @since 2.0.0 + */ + customSelects: function( $context ) { + + $( wpexLocalize.customSelects, $context ).each( function() { + var $this = $( this ); + var elID = $this.attr( 'id' ); + var elClass = elID ? ' wpex-' + elID : ''; + if ( $this.is( ':visible' ) ) { + var wpex_wrap = $('
'); + wpex_wrap.insertBefore($this); + wpex_wrap.append($this); + if ( $this.attr( 'multiple' ) ) { + wpex_wrap.attr('class', 'wpex-multiselect-wrap' + elClass); + } else { + wpex_wrap.attr('class', 'wpex-select-wrap' + elClass); + } + } + } ); + + $( '.wpex-select-wrap', $context ).append( '' ); + + if ( $.fn.select2 !== undefined ) { + $( '#calc_shipping_country' ).select2(); + } + + }, + + /** + * FadeIn Elements + * + * @since 2.0.0 + */ + fadeIn: function() { + $( '.fade-in-image, .wpex-show-on-load' ).addClass( 'no-opacity' ); + }, + + /** + * OwlCarousel + * + * @since 2.0.0 + */ + wpexOwlCarousel: function( $context ) { + + // Make sure scripts are loaded + if ( undefined === $.fn.wpexOwlCarousel || undefined === $.fn.imagesLoaded ) { + return; + } + + var self = this; + + // Loop through carousels + $( '.wpex-carousel', $context ).each( function() { + + var $this = $( this ), + $data = $this.data(); + + $this.imagesLoaded( function() { + + var owl = $this.wpexOwlCarousel( { + animateIn : false, + animateOut : false, + lazyLoad : false, + smartSpeed : $data.smartSpeed ? $data.smartSpeed : wpexLocalize.carouselSpeed, + rtl : wpexLocalize.isRTL ? true : false, + dots : $data.dots, + nav : $data.nav, + items : $data.items, + slideBy : $data.slideby, + center : $data.center, + loop : $data.loop, + margin : $data.margin, + autoplay : $data.autoplay, + autoplayTimeout : $data.autoplayTimeout, + autoHeight : $data.autoHeight, + autoWidth : $data.autoWidth, + autoplayHoverPause : true, + navText : [ '', '' ], + responsive : { + 0: { + items : $data.itemsMobilePortrait + }, + 480: { + items : $data.itemsMobileLandscape + }, + 768: { + items : $data.itemsTablet + }, + 960: { + items : $data.items + } + }, + } ); + + } ); + + } ); + + }, + + /** + * SliderPro + * + * @since 2.0.0 + */ + sliderPro: function( $context ) { + var self = this; + + // Make sure functions are defined + if ( undefined === $.fn.sliderPro ) { + return; + } + + // Loop through each slider + $( '.wpex-slider', $context ).each( function() { + + // Declare vars + var $slider = $( this ); + var $data = $slider.data(); + var $slides = $slider.find( '.sp-slide' ); + + // Lets show things that were hidden to prevent flash + $slider.find( '.wpex-slider-slide, .wpex-slider-thumbnails.sp-thumbnails' ).css( { + 'opacity' : 1, + 'display' : 'block' + } ); + + // Main checks + var $autoHeight = self.parseData( $data.autoHeight, true ); + var $preloader = $slider.prev( '.wpex-slider-preloaderimg' ); + var $height = ( $preloader.length && $autoHeight ) ? $preloader.outerHeight() : null; + var $heightAnimationDuration = self.parseData( $data.heightAnimationDuration, 600 ); + var $loop = self.parseData( $data.loop, false ); + var $autoplay = self.parseData( $data.autoPlay, true ); + + // Get height based on tallest item if autoHeight is disabled + if ( ! $autoHeight && $slides.length ) { + var $tallest = self.getTallestEl( $slides ); + $height = $tallest.height(); + } + + // Run slider + $slider.sliderPro( { + + //supportedAnimation : 'JavaScript', //(CSS3 2D, CSS3 3D or JavaScript) + aspectRatio : -1, + width : '100%', + height : $height, + responsive : true, + fade : self.parseData( $data.fade, 600 ), + touchSwipe : self.parseData( $data.touchSwipe, true ), + fadeDuration : self.parseData( $data.animationSpeed, 600 ), + slideAnimationDuration : self.parseData( $data.animationSpeed, 600 ), + autoHeight : $autoHeight, + heightAnimationDuration : parseInt( $heightAnimationDuration ), + arrows : self.parseData( $data.arrows, true ), + fadeArrows : self.parseData( $data.fadeArrows, true ), + autoplay : $autoplay, + autoplayDelay : self.parseData( $data.autoPlayDelay, 5000 ), + buttons : self.parseData( $data.buttons, true ), + shuffle : self.parseData( $data.shuffle, false ), + orientation : self.parseData( $data.direction, 'horizontal' ), + loop : $loop, + keyboard : false, + fullScreen : self.parseData( $data.fullscreen, false ), + slideDistance : self.parseData( $data.slideDistance, 0 ), + thumbnailsPosition : 'bottom', + thumbnailHeight : self.parseData( $data.thumbnailHeight, 70 ), + thumbnailWidth : self.parseData( $data.thumbnailWidth, 70 ), + thumbnailPointer : self.parseData( $data.thumbnailPointer, false ), + updateHash : self.parseData( $data.updateHash, false ), + thumbnailArrows : false, + fadeThumbnailArrows : false, + thumbnailTouchSwipe : true, + fadeCaption : self.parseData( $data.fadeCaption, true ), + captionFadeDuration : 600, + waitForLayers : true, + autoScaleLayers : true, + forceSize : 'none', + reachVideoAction : self.parseData( $data.reachVideoAction, 'playVideo' ), + leaveVideoAction : self.parseData( $data.leaveVideoAction, 'pauseVideo' ), + endVideoAction : self.parseData( $data.leaveVideoAction, 'nextSlide' ), + fadeOutPreviousSlide : true, // If disabled testimonial/content slides are bad + autoplayOnHover : self.parseData( $data.autoplayOnHover, 'pause' ), + init: function( event ) { + $slider.prev( '.wpex-slider-preloaderimg' ).remove(); + }, + gotoSlide: function( event ) { + if ( ! $loop && $autoplay && event.index === $slider.find( '.sp-slide' ).length - 1 ) { + $slider.data( 'sliderPro' ).stopAutoplay(); + } + } + } ); + + } ); + + // WooCommerce: Prevent clicking on Woo entry slider + $( '.woo-product-entry-slider' ).click( function() { + return false; + } ); + + // Make sure functions are defined + if ( undefined === $.fn.imagesLoaded ) { + return; + } + + // Show no carousel thumbs + var $sliderProThumbsNC = $( '.wpex-slider-thumbnails.sp-nc-thumbnails', $context ); + $sliderProThumbsNC.each( function() { + var $this = $( this ); + $this.imagesLoaded( function() { + $this.css( { + 'opacity' : 1, + 'display' : 'block' + } ); + } ); + } ); + + }, + + /** + * Isotope Grids + * + * @since 2.0.0 + */ + isotopeGrids: function ($context) { + var self = this; + // Make sure scripts are loaded + if ( undefined === $.fn.imagesLoaded || undefined === $.fn.isotope ) { + return; + } + var containers = $(window.wpexAnimsition.linkElement).parents(window.wpexAnimsition.container_block); + function get_filter_constraint(filterLink){ + var filter_attr = window.wpexAnimsition.filter_attr; + var filter_constraint = filterLink.attr(filter_attr); + var filter_attrs = filter_attr.split(","); + if(filter_attrs.length != 1){ + filter_constraint = []; + filter_attr = ""; + filter_attrs.forEach(function(fa){ + var tmp_filter_constraint = filterLink.attr(fa); + if( tmp_filter_constraint != undefined){ + if(window.wpexAnimsition.use_attr_filter){ + if(tmp_filter_constraint == "all"){ + filter_constraint.push("["+fa+"]"); + }else{ + filter_constraint.push("["+fa+(fa[fa.length-1] == "s" ? '*' : '')+"=\""+tmp_filter_constraint+"\"]"); + } + }else{ + filter_constraint.push(tmp_filter_constraint); + } + } + }) + if(window.wpexAnimsition.use_attr_filter){ + filter_constraint = filter_constraint.join("],["); + }else{ + filter_constraint = filter_constraint.join(","); + } + }else{ + if(window.wpexAnimsition.use_attr_filter){ + if(filter_constraint == "all"){ + filter_constraint = "["+filter_attr+"]"; + }else{ + filter_constraint = "["+filter_attr+(filter_attr[filter_attr.length-1] == "s" ? '*' : '')+"=\""+filter_constraint+"\"]"; + } + } + } + if(filterLink.data("count_limit") != undefined){ + filter_constraint = filter_constraint+":nth-child(-n+"+filterLink.data("count_limit")+")"; + } + return filter_constraint; + } + var container_text_arr = window.wpexAnimsition.container_block.split(","); + if(window.already_changes == undefined) + window.already_changes = container_text_arr.map(function(){return false}); + // Loop through isotope grids + $(containers).each(function (i,v) { + var $container = $(v); + if(container_text_arr[i] == undefined){ + return; + } + if($(container_text_arr[i]).parents(window.wpexAnimsition.need_fix_containers).length != 0){ + if(!window.already_changes[i]){ + var $filter = $container.parent().find(window.wpexAnimsition.filter_bar); + var $filterLinks = $filter.find(window.wpexAnimsition.filter_option); + var $divs = []; + $filterLinks.each(function (i,v) { + var filter_constraint = get_filter_constraint($(v)); + var $div = $("
"); + var filter_constraints = filter_constraint.split(",") + filter_constraints.forEach(function(vv){ + var rm_attr = ""; + var clone_mode = false; + var max_count = -1; + if(vv[0] == "["){ + if(vv.search('=') != -1){ + var attr_pair = vv.slice(1,-1).split("="); + attr_pair = attr_pair.map(function(v){ return v.match(/[^"^']+/)[0]}); + attr_pair[0] = attr_pair[0].replace("*",""); + $div.attr(attr_pair[0],attr_pair[1]); + rm_attr = attr_pair[0]; + }else{ + clone_mode = true; + var attr_pair = [vv.split(/\[|\]/)[1],"All"]; + $(v).attr(attr_pair[0],attr_pair[1]); + $div.attr(attr_pair[0],attr_pair[1]); + var match_max_count = vv.match(/:nth-child\(-n\+(\d+)\)/) + if(match_max_count && match_max_count.length == 2){ + max_count = match_max_count[1]; + } + rm_attr = attr_pair[0]; + } + }else if(vv[0] == "."){ + $div.attr('class',vv.slice(1)); + rm_attr = 'class'; + }else if(vv[0] == "#"){ + $div.attr('id',vv.slice(1)); + rm_attr = 'id'; + } + var linkElements = $container.parent().find(window.wpexAnimsition.linkElement).filter(vv); + if(linkElements.length != 0){ + var parents_elements = window.wpexAnimsition.linkElement.split(/>| /).slice(0,-1).filter(function(v){return v!=""}); + parents_elements = parents_elements.reverse(); + var parent_el = null; + parents_elements.forEach(function(vvv){ + if(parent_el == null){ + parent_el = linkElements.parents(vvv) + }else{ + parent_el = parent_el.parents(vvv) + } + }) + $div.append(parent_el.eq(0).prop("outerHTML")); + if(!clone_mode){ + $div.find(window.wpexAnimsition.linkElement).remove(); + linkElements.removeAttr(rm_attr); + linkElements.appendTo($div.find("*").eq(-1)); + }else if(max_count != -1){ + $(v).removeAttr("data-count_limit"); + $(v).removeData("count_limit"); + $div.find(window.wpexAnimsition.linkElement).not(":lt("+max_count+")").remove(); + $div.find(window.wpexAnimsition.linkElement).removeAttr(rm_attr); + } + } + }) + $divs.push($div.prop("outerHTML")); + }) + $(v).before($divs.join("")); + var parents_text = window.wpexAnimsition.container_block.split(',').map(function(t){ + var str_arr = t.split(/>| /); + return ((str_arr.length <= 1) ? "*" : str_arr[0]); + }).join(","); + var parent_node = $(v).parents(parents_text); + $(v).remove(); + var activeItems; + var $filter = parent_node.find(window.wpexAnimsition.filter_bar); + if ($filter.length) { + var $filterLinks = $filter.find(window.wpexAnimsition.filter_option); + activeItems = ''; + if($filterLinks.length != 0){ + var filter_constraint = get_filter_constraint($filterLinks.eq(0)); + $filterLinks.each(function(){ + var filter_constraint = get_filter_constraint($(this)); + var inactive_node = parent_node.find(filter_constraint).not(window.wpexAnimsition.filter_option); + inactive_node.css("display","none"); + inactive_node.find("> *").addClass("hidden_item"); + inactive_node.find("> *").removeClass("active"); + }) + var active_node = parent_node.find(filter_constraint).not(window.wpexAnimsition.filter_option) + active_node.css("display",""); + active_node.find("> *").removeClass("hidden_item"); + active_node.find("> *").eq(0).addClass("active"); + active_node.find("> *").eq(0).css("display",""); + active_node.find(window.wpexAnimsition.linkElement).css("display",""); + } + $filterLinks.click(function () { + var filter_constraint = get_filter_constraint($(this)); + $filterLinks.each(function(){ + var filter_constraint = get_filter_constraint($(this)); + var inactive_node = parent_node.find(filter_constraint).not(window.wpexAnimsition.filter_option); + inactive_node.css("display","none"); + inactive_node.find("> *").addClass("hidden_item"); + inactive_node.find("> *").removeClass("active"); + }) + var active_node = parent_node.find(filter_constraint).not(window.wpexAnimsition.filter_option) + active_node.css("display",""); + active_node.find("> *").removeClass("hidden_item"); + active_node.find("> *").eq(0).addClass("active"); + active_node.find("> *").eq(0).css("display",""); + active_node.find(window.wpexAnimsition.linkElement).css("display",""); + active_node.find(window.wpexAnimsition.children_text_block).css("height",""); + return false; + }) + } + } + window.already_changes[i] = true; + return; + } + $container.imagesLoaded(function () { + // Check filter + var activeItems; + + // Filter links + var $filter = $container.parent().find(window.wpexAnimsition.filter_bar); + if ($filter.length) { + var $filterLinks = $filter.find(window.wpexAnimsition.filter_option); + activeItems = ''; + if($filterLinks.length != 0){ + var filter_constraint = get_filter_constraint($filterLinks.eq(0)); + activeItems = filter_constraint; + } + $filterLinks.click(function () { + var filter_constraint = get_filter_constraint($(this)); + $grid.isotope({ filter: filter_constraint}); + self.equalHeights(); + return false; + }) + } + + // Crete the isotope layout + var $grid = $container.isotope({ + itemSelector: window.wpexAnimsition.linkElement, + transformsEnabled: true, + isOriginLeft: wpexLocalize.isRTL ? false : true, + transitionDuration: $container.data('transition-duration') ? $container.data('transition-duration') + 's' : '0.4s', + layoutMode: $container.data('layout-mode') ? $container.data('layout-mode') : 'masonry', + filter: activeItems + }) + // $grid.on( 'layoutComplete', function(){ + // //Something to call after animation + // }); + }) + }) + }, + + /** + * Custom hovers using data attributes + * + * @since 4.5.4.2 + */ + customHovers: function() { + var headCSS = ''; + var cssObj = {}; + + $( '.wpex-hover-data' ).remove(); // prevent dups / front-end editor fix + + // Newer Total 4.5.4.2 method + $( '[data-wpex-hover]' ).each( function( index, value ) { + + var $this = $( this ); + var data = $this.data( 'wpex-hover' ); + var uniqueClass = 'wpex-dhover-' + index; + var hoverCSS = ''; + var target = ''; + + if ( data.parent ) { + $this.parents( data.parent ).addClass( uniqueClass + '-p' ); + $this.addClass( uniqueClass ); + target = '.' + uniqueClass + '-p:hover .' + uniqueClass; + } else { + $this.addClass( uniqueClass ); + target = '.' + uniqueClass + ':hover'; + } + + $.each( data, function( attribute, value ) { + if ( 'target' == attribute ) { + return true; + } + hoverCSS += attribute + ':' + value + '!important;'; + } ); + + if ( hoverCSS ) { + if ( hoverCSS in cssObj ) { + cssObj[hoverCSS] = cssObj[hoverCSS] + ',' + target + } else { + cssObj[hoverCSS] = target; + } + } + + } ); + + if ( cssObj ) { + + $.each( cssObj, function( css, elements ) { + + headCSS += elements + '{' + css + '}'; + + } ); + + } + + if ( headCSS ) { + this.config.$head.append( '' ); + } + + }, + + /** + * Responsive CSS + * + * @since 4.0 + */ + responsiveCSS: function() { + + var headCSS = ''; + var mediaObj = {}; + var bkPoints = {}; + + $( '.wpex-vc-rcss' ).remove(); // Prevent duplicates when editing the VC + + // Get breakpoints + bkPoints.d = ''; + bkPoints = $.extend( bkPoints, wpexLocalize.responsiveDataBreakpoints ); + + // Loop through breakpoints to create mediaObj + $.each( bkPoints, function( key ) { + mediaObj[key] = ''; // Create empty array of media breakpoints + } ); + + // loop through all modules and add CSS to mediaObj + $( '[data-wpex-rcss]' ).each( function( index, value ) { + + var $this = $( this ); + var uniqueClass = 'wpex-rcss-' + index; + var data = $this.data( 'wpex-rcss' ); + + $this.addClass( uniqueClass ); + + $.each( data, function( key, val ) { + + var thisVal = val; + var target = key; + + $.each( bkPoints, function( key ) { + + if ( thisVal[key] ) { + + mediaObj[key] += '.' + uniqueClass + '{' + target + ':' + thisVal[key] + '!important;}'; + + } + + } ); + + } ); + + } ); + + $.each( mediaObj, function( key, val ) { + + if ( 'd' == key ) { + headCSS += val; + } else { + if ( val ) { + headCSS += '@media (max-width: ' + bkPoints[key] + ') { ' + val + ' }'; + } + } + + } ); + + if ( headCSS ) { + + headCSS = ''; + + this.config.$head.append( headCSS ); + + } + + }, + + /** + * VCEX Filter Nav + * + * @since 2.0.0 + */ + vcexFilterNav: function( $context ) { + + // Make sure scripts are loaded + if ( undefined === $.fn.imagesLoaded || undefined === $.fn.isotope ) { + return; + } + + // Filter Navs + $( '.vcex-filter-nav', $context ).each( function() { + + var $nav = $( this ), + $filterGrid = $( '#' + $nav.data( 'filter-grid' ) ), + $grid; + + if ( ! $filterGrid.hasClass( 'wpex-row' ) ) { + $filterGrid = $filterGrid.find( '.wpex-row' ); + } + + if ( $filterGrid.length ) { + + // Remove isotope class + $filterGrid.removeClass( 'vcex-isotope-grid' ); + + // Run functions after images are loaded for grid + $filterGrid.imagesLoaded( function() { + + // Create Isotope + if ( ! $filterGrid.hasClass( 'vcex-navbar-filter-grid' ) ) { + + $filterGrid.addClass( 'vcex-navbar-filter-grid' ); + + var activeItems = $nav.data( 'filter' ); + if ( activeItems && ! $nav.find( '[data-filter="' + activeItems + '"]').length ) { + activeItems = ''; + } + + $grid = $filterGrid.isotope( { + itemSelector : '.col', + transformsEnabled : true, + isOriginLeft : wpexLocalize.isRTL ? false : true, + transitionDuration : $nav.data( 'transition-duration' ) ? $nav.data( 'transition-duration' ) + 's' : '0.4s', + layoutMode : $nav.data( 'layout-mode' ) ? $nav.data( 'layout-mode' ) : 'masonry', + filter : activeItems + } ); + + } else { + + // Add isotope only, the filter grid already + $grid = $filterGrid.isotope(); + + } + + // Loop through filter links for filtering items + var $filterLinks = $nav.find( 'a' ); + $filterLinks.click( function() { + + // Define link + var $link = $( this ); + + // Filter items + $grid.isotope( { + filter : $( this ).attr( 'data-filter' ) + } ); + + // Remove all active class + $filterLinks.removeClass( 'active' ); + + // Add active class + $link.addClass( 'active' ); + + // Return false + return false; + + } ); + + } ); + + } + + } ); + + }, + + /** + * Archive Masonry Grids + * + * @since 2.0.0 + */ + archiveMasonryGrids: function() { + + // Make sure scripts are loaded + if ( undefined === $.fn.imagesLoaded || undefined === $.fn.isotope ) { + return; + } + + // Define main vars + var self = this, + $archives = $( '.blog-masonry-grid,div.wpex-row.portfolio-masonry,div.wpex-row.portfolio-no-margins,div.wpex-row.staff-masonry,div.wpex-row.staff-no-margins' ); + + // Loop through archives + $archives.each( function() { + + var $this = $( this ); + var $data = $this.data(); + + // Load isotope after images loaded + $this.imagesLoaded( function() { + + var $grid = $this.isotope( { + itemSelector : '.isotope-entry', + transformsEnabled : true, + isOriginLeft : wpexLocalize.isRTL ? false : true, + transitionDuration : self.parseData( $data.transitionDuration, '0.0' ) + 's', + layoutMode : self.parseData( $data.layoutMode, 'masonry' ) + } ); + + } ); + + } ); + + }, + + /** + * Automatic Lightbox for images + * + * @version 4.5 + */ + autoLightbox: function() { + if ( ! wpexLocalize.iLightbox.auto ) { + return; + } + var self = this, + imageExt = ['bmp', 'gif', 'jpeg', 'jpg', 'png', 'tiff', 'tif', 'jfif', 'jpe']; + $( '.wpb_text_column a:has(img), body.no-composer .entry a:has(img)' ).each( function() { + var $this = $( this ); + var href = $this.attr( 'href' ); + var ext = self.getUrlExtension( href ); + if ( href && imageExt.indexOf( ext ) !== -1 ) { + if ( ! $this.parents( '.woocommerce-product-gallery' ).length ) { + $this.addClass( 'wpex-lightbox' ); + } + } + } ); + }, + + /** + * iLightbox + * + * @since 2.0.0 + */ + iLightbox: function( $context ) { + var self = this; + + // Store lightbox settings in object + self.iLightboxSettings = wpexLocalize.iLightbox; + + // Sanitize data + self.iLightboxSettings.show.speed = parseInt( self.iLightboxSettings.show.speed ); + self.iLightboxSettings.hide.speed = parseInt( self.iLightboxSettings.hide.speed ); + self.iLightboxSettings.effects.repositionSpeed = parseInt( self.iLightboxSettings.effects.repositionSpeed ); + self.iLightboxSettings.effects.switchSpeed = parseInt( self.iLightboxSettings.effects.switchSpeed ); + self.iLightboxSettings.effects.loadedFadeSpeed = parseInt( self.iLightboxSettings.effects.loadedFadeSpeed ); + self.iLightboxSettings.effects.fadeSpeed = parseInt( self.iLightboxSettings.effects.fadeSpeed ); + + // Lightbox Galleries + // @todo change lightbox-group class to .wpex-lightbox-group in theme template parts + $( '.lightbox-group, .wpex-lightbox-group', $context ).each( function() { + + // Get lightbox data + var $this = $( this ); + var $item = $this.find( '.wpex-lightbox-group-item' ); + var $iLightboxData = $this.data( 'ilightbox' ); + + // Destroy if lightbox has already been added and re-add + // Prevents build-up in AJAX functions + if ( $iLightboxData ) { + $iLightboxData.destroy(); + } + + // Prevent conflicts (can't be a group item and a lightbox item) + $item.removeClass( 'wpex-lightbox' ); + + // Set item to it's child link if not a link itself + if ( ! $item.is( 'a' ) ) { + $item = $item.find( 'a' ); + $item.removeClass( 'wpex-lightbox' ); // prevent conflicts + } + + // Start up lightbox + var $ilightbox = $item.iLightBox( $.extend( true, {}, self.iLightboxSettings, { + skin: self.parseData( $this.data( 'skin' ), wpexLocalize.iLightbox.skin ), + path: self.parseData( $this.data( 'path' ), wpexLocalize.iLightbox.path ), + infinite: self.parseData( $this.data( 'infinite' ), wpexLocalize.iLightbox.infinite ), + show: { + title: self.parseData( $this.data( 'show_title' ), wpexLocalize.iLightbox.show.title ) + }, + controls: { + arrows: self.parseData( $this.data( 'arrows' ), wpexLocalize.iLightbox.controls.arrows ), + thumbnail: self.parseData( $this.data( 'thumbnails' ), wpexLocalize.iLightbox.controls.thumbnail ) + }, + } ) ); + + // Save lightbox instance + $this.data( 'ilightbox', $ilightbox ); + + } ); + + // Lightbox Standard => SINGLE LIGHTBOX + $( '.wpex-lightbox', $context ).each( function() { + + var $this = $( this ); + + if ( ! $this.is( 'a' ) ) { + $this = $this.find( 'a' ); + } + + if ( ! $this.hasClass( 'wpex-lightbox-group-item' ) ) { + + var $ilightbox = $this.iLightBox( $.extend( true, {}, self.iLightboxSettings, { + skin: self.parseData( $this.data( 'skin' ), wpexLocalize.iLightbox.skin ), + show: { + title: self.parseData( $this.data( 'show_title' ), wpexLocalize.iLightbox.show.title ) + }, + controls: { + arrows: false, + thumbnail: false, + mousewheel: false + } + } ) ); + + $this.data( 'ilightbox', $ilightbox ); + } + + } ); + + // Lightbox Gallery with custom imgs + $( '.wpex-lightbox-gallery', $context ).on( 'click', function( event ) { + + var $this = $( this ), + data = $this.data( 'gallery' ), + imagesArray = ''; + + if ( ! data ) { + return; + } + + if ( typeof data == 'string' || data instanceof String ) { + + imagesArray = data.split( ',' ); + + } else { + imagesArray = data; + } + + // console.log ( imagesArray ); + //return false; + + $.iLightBox( imagesArray, $.extend( true, {}, self.iLightboxSettings, { + skin: self.parseData( $this.data( 'skin' ), wpexLocalize.iLightbox.skin ), + path: self.parseData( $this.data( 'path' ), wpexLocalize.iLightbox.path ), + infinite: self.parseData( $this.data( 'skin' ), wpexLocalize.iLightbox.infinite ), + controls: { + arrows: self.parseData( $this.data( 'arrows' ), wpexLocalize.iLightbox.controls.arrows ), + thumbnail: self.parseData( $this.data( 'thumbnails' ), wpexLocalize.iLightbox.controls.thumbnail ) + } + } ) ); + + return false; + + } ); + + // Lightbox Videos => OLD SCHOOL STUFF, keep for old customers + $( '.wpex-lightbox-video, .wpb_single_image.video-lightbox a, .wpex-lightbox-autodetect, .wpex-lightbox-autodetect a', $context ).each( function() { + + var $this = $( this ), + $data = $this.data(); + + $this.iLightBox( { + smartRecognition : true, + skin : self.parseData( $data.skin, wpexLocalize.iLightbox.skin ), + path : 'horizontal', + controls : { + fullscreen : wpexLocalize.iLightbox.controls.fullscreen + }, + show : { + title : self.parseData( $data.show_title, wpexLocalize.iLightbox.show.title ), + speed : parseInt( wpexLocalize.iLightbox.show.speed ) + }, + hide : { + speed : parseInt( wpexLocalize.iLightbox.hide.speed ) + }, + effects : { + reposition : true, + repositionSpeed : 200, + switchSpeed : 300, + loadedFadeSpeed : wpexLocalize.iLightbox.effects.loadedFadeSpeed, + fadeSpeed : wpexLocalize.iLightbox.effects.fadeSpeed + }, + overlay : wpexLocalize.iLightbox.overlay, + social : wpexLocalize.iLightbox.social + } ); + } ); + + // Custom Lightbox for Carousels + $( '.wpex-carousel', $context ).on( 'click', '.wpex-carousel-lightbox-item', function( e ) { + e.preventDefault(); + + var $this = $( this ), + $parent = $this.parents( '.wpex-carousel' ), + $parentOwl = $this.parents( '.owl-item' ), + $owlItems = $parent.find( '.owl-item' ), + $data = $this.data(), + $imagesArray = []; + + $owlItems.each( function() { + if ( ! $( this ).hasClass( 'cloned' ) ) { + var $image = $( this ).find( '.wpex-carousel-lightbox-item' ); + if ( $image.length > 0 ) { + $imagesArray.push( { + URL : $image.attr( 'href' ), + title : $image.attr( 'data-title' ), + caption : $image.attr( 'data-caption' ) + } ); + } + } + } ); + + if ( $imagesArray.length > 0 ) { + + // Define where to start lightbox from + var $startFrom = $this.data( 'count' ) - 1; + $startFrom = $startFrom ? $startFrom : 0; + + $.iLightBox( $imagesArray, $.extend( true, {}, self.iLightboxSettings, { + startFrom: parseInt( $startFrom ), + skin: self.parseData( $data.skin, wpexLocalize.iLightbox.skin ), + path: self.parseData( $data.path, wpexLocalize.iLightbox.path ), + infinite: self.parseData( $data.skin, wpexLocalize.iLightbox.infinite ), + show: { + title: self.parseData( $data.show_title, wpexLocalize.iLightbox.show.title ) + }, + controls: { + arrows: self.parseData( $data.arrows, wpexLocalize.iLightbox.controls.arrows ), + thumbnail: self.parseData( $data.thumbnails, wpexLocalize.iLightbox.controls.thumbnail ) + } + } ) ); + + } + + } ); + + }, + + /** + * Overlay Hovers + * + * @since 2.0.0 + */ + overlayHovers: function() { + + // Mobile Hovers if enabled + if ( this.config.isMobile ) { + + // Remove overlays completely if mobile support is disabled + $( '.overlay-parent.overlay-hh' ).each( function() { + if ( ! $( this ).hasClass( 'overlay-ms' ) ) { + $( this ).find( '.theme-overlay' ).remove(); + } + } ); + + // Prevent click on touchstart + $( 'a.overlay-parent.overlay-ms.overlay-h, .overlay-parent.overlay-ms.overlay-h > a' ).on( 'touchstart', function( e ) { + + var $this = $( this ); + var $overlayParent = $this.hasClass( 'overlay-parent' ) ? $this : $this.parent( '.overlay-parent' ); + + if ( $overlayParent.hasClass( 'wpex-touched' ) ) { + return true; + } else { + $overlayParent.addClass( 'wpex-touched' ); + $( '.overlay-parent' ).not($overlayParent).removeClass( 'wpex-touched' ); + e.preventDefault(); + return false; + } + + } ); + + // Hide overlay when clicking outside + this.config.$document.on( 'touchstart', function( e ) { + if ( ! $( e.target ).closest( '.wpex-touched' ).length ) { + $( '.wpex-touched' ).removeClass( 'wpex-touched' ); + } + } ); + + } + + // Title Push Up + $( '.overlay-parent-title-push-up' ).each( function() { + + // Define vars + var $this = $( this ), + $title = $this.find( '.overlay-title-push-up' ), + $child = $this.find( 'a' ), + $img = $child.find( 'img' ), + $titleHeight = $title.outerHeight(); + + // Create overlay after image is loaded to prevent issues + $this.imagesLoaded( function() { + + // Position title + $title.css( { + 'bottom' : - $titleHeight + } ); + + // Add height to child + $child.css( { + 'height' : $img.outerHeight() + } ); + + // Position image + $img.css( { + 'position' : 'absolute', + 'top' : '0', + 'left' : '0', + 'width' : 'auto', + 'height' : 'auto' + } ); + + // Animate image on hover + $this.hover( function() { + $img.css( { + 'top' : -20 + } ); + $title.css( { + 'bottom' : 0 + } ); + }, function() { + $img.css( { + 'top' : '0' + } ); + $title.css( { + 'bottom' : - $titleHeight + } ); + } ); + + } ); + + } ); + + }, + + /** + * Sticky Topbar + * + * @since 3.4.0 + */ + stickyTopBar: function() { + var self = this; + + // Return if disabled or not found + if ( ! self.config.hasStickyTopBar || ! self.config.$stickyTopBar ) { + return; + } + + // Define vars + var $isSticky = false, + $offset = 0, + $window = self.config.$window, + $stickyTopbar = self.config.$stickyTopBar, + $mobileSupport = self.config.hasStickyTopBarMobile, + $brkPoint = wpexLocalize.stickyTopBarBreakPoint, + $mobileMenu = $( '#wpex-mobile-menu-fixed-top' ), + $stickyWrap = $( '
' ); + + // Set sticky wrap to new wrapper + $stickyTopbar.wrapAll( $stickyWrap ); + $stickyWrap = $( '#top-bar-wrap-sticky-wrapper' ); + + // Get offset + function getOffset() { + $offset = 0; // Reset offset for resize + if ( self.config.$wpAdminBar ) { + $offset = $offset + self.config.$wpAdminBar.outerHeight(); + } + if ( $mobileMenu.is( ':visible' ) ) { + $offset = $offset + $mobileMenu.outerHeight(); + } + return $offset; + } + + // Stick the TopBar + function setSticky() { + + // Already stuck + if ( $isSticky ) { + return; + } + + // Add wrap class and toggle sticky class + $stickyWrap + .css( 'height', $stickyTopbar.outerHeight() ) + .removeClass( 'not-sticky' ) + .addClass( 'is-sticky' ); + + // Add CSS to topbar + $stickyTopbar.css( { + 'top' : getOffset(), + 'width' : $stickyWrap.width() + } ); + + // Set sticky to true + $isSticky = true; + + } + + // Unstick the TopBar + function destroySticky() { + + if ( ! $isSticky ) { + return; + } + + // Remove sticky wrap height and toggle sticky class + $stickyWrap + .css( 'height', '' ) + .removeClass( 'is-sticky' ) + .addClass( 'not-sticky' ); + + // Remove topbar css + $stickyTopbar.css( { + 'width' : '', + 'top' : '', + } ); + + // Set sticky to false + $isSticky = false; + + } + + // On load check + function initSetSticky() { + + // Disable on mobile devices + if ( ! $mobileSupport && ( self.config.viewportWidth < $brkPoint ) ) { + return; + } + + // Set sticky based on original offset + $offset = $stickyWrap.offset().top - getOffset(); + + // Set or destroy sticky + if ( self.config.windowTop > $offset ) { + setSticky(); + } + + } + + // On scroll actions for sticky topbar + function onScroll() { + + // Disable on mobile devices + if ( ! $mobileSupport && ( self.config.viewportWidth < $brkPoint ) ) { + return; + } + + // Destroy sticky at top and prevent sticky at top (since its already at top) + if ( 0 === self.config.windowTop ) { + if ( $isSticky ) { + destroySticky(); + } + return; + } + + // Get correct start position for sticky to start + var $stickyWrapTop = $stickyWrap.offset().top; + var $setStickyPos = $stickyWrapTop - getOffset(); + + // Set or destroy sticky based on offset + if ( self.config.windowTop >= $setStickyPos ) { + setSticky(); + } else { + destroySticky(); + } + + } + + // On resize actions for sticky topbar + function onResize() { + + // Check if header is disabled on mobile if not destroy on resize + if ( ! $mobileSupport && ( self.config.viewportWidth < $brkPoint ) ) { + destroySticky(); + } else { + + // Set correct width and top value + if ( $isSticky ) { + $stickyWrap.css( 'height', $stickyTopbar.outerHeight() ); + $stickyTopbar.css( { + 'top' : getOffset(), + 'width' : $stickyWrap.width() + } ); + } else { + onScroll(); + } + + } + + } + + // Fire on init + initSetSticky(); + + // Fire onscroll event + $window.scroll( function() { + onScroll(); + } ); + + // Fire onResize + $window.resize( function() { + onResize(); + } ); + + // Fire resize on flip + // Destroy and re-calculate + $window.on( 'orientationchange' , function( e ) { + destroySticky(); + initSetSticky(); + } ); + + }, + + /** + * Get correct offSet for the sticky header and sticky header menu. + * + * @since 3.4.0 + */ + stickyOffset: function() { + var self = this; + var $offset = 0; + var $mobileMenu = $( '#wpex-mobile-menu-fixed-top' ); + var $stickyTopbar = self.config.$stickyTopBar; + + // Offset sticky topbar + if ( $stickyTopbar && $stickyTopbar.is( ':visible' ) ) { + if ( self.config.hasStickyTopBarMobile + || self.config.viewportWidth >= wpexLocalize.stickyTopBarBreakPoint + ) { + $offset = $offset + $stickyTopbar.outerHeight(); + } + } + + // Offset mobile menu + if ( $mobileMenu.is( ':visible' ) ) { + $offset = $offset + $mobileMenu.outerHeight(); + } + + // Offset adminbar + if ( this.config.$wpAdminBar && this.config.$wpAdminBar.is( ':visible' ) ) { + $offset = $offset + this.config.$wpAdminBar.outerHeight(); + } + + // Added offset via child theme + if ( wpexLocalize.addStickyHeaderOffset ) { + $offset = $offset + wpexLocalize.addStickyHeaderOffset; + } + + // Return correct offset + return $offset; + + }, + + /** + * New Sticky Header + * + * @since 4.6.5 + */ + stickyHeaderCustomStartPoint: function() { + var $startPosition = wpexLocalize.stickyHeaderStartPosition; + if ( $.isNumeric( $startPosition ) ) { + $startPosition = $startPosition; + } else if ( $( $startPosition ).length ) { + $startPosition = $( $startPosition ).offset().top; + } else { + $startPosition = 0; + } + return $startPosition; + }, + + /** + * New Sticky Header + * + * @since 3.4.0 + */ + stickyHeader: function() { + var self = this, + $isSticky = false, + $isShrunk = false, + $isLogoSwapped = false; + + // Return if sticky is disabled + if ( ! self.config.hasStickyHeader ) { + return; + } + + // Define header + var $header = self.config.$siteHeader; + var $headerHeight = self.config.siteHeaderHeight; + var $headerBottom = $header.offset().top + $header.outerHeight(); + + // Add sticky wrap + var $stickyWrap = $( '
' ); + $header.wrapAll( $stickyWrap ); + $stickyWrap = $( '#site-header-sticky-wrapper' ); // Cache newly added element as dom object + + // Define main vars for sticky function + var $window = self.config.$window; + var $brkPoint = wpexLocalize.stickyHeaderBreakPoint; + var $mobileSupport = self.config.hasStickyMobileHeader; + var $customStart = self.stickyHeaderCustomStartPoint(); + + // Custom sticky logo + var $headerLogo = self.config.$siteLogo; + var $headerLogoSrc = self.config.siteLogoSrc; + + // Shrink support + var maybeShrink = ( 'shrink' == self.stickyHeaderStyle || 'shrink_animated' == self.stickyHeaderStyle ) ? true : false; + + // Custom shrink logo + var $stickyLogo = wpexLocalize.stickyheaderCustomLogo; + if ( $stickyLogo + && wpexLocalize.stickyheaderCustomLogoRetina + && self.config.isRetina + ) { + $stickyLogo = wpexLocalize.stickyheaderCustomLogoRetina; + } + + // Load images to be used for the custom sticky logo + if ( $stickyLogo ) { + $( '' ).appendTo( 'body' ).css( 'display', 'none' ); + } + + // Check if we are on mobile size + function pastBreakPoint() { + return ( self.config.viewportWidth < $brkPoint ) ? true : false; + } + + // Check if we are past the header + function pastheader() { + var bottomCheck = 0; + if ( self.config.hasHeaderOverlay ) { + bottomCheck = $headerBottom; + } else { + bottomCheck = $stickyWrap.offset().top + $stickyWrap.outerHeight(); + } + if ( self.config.windowTop > $headerBottom ) { + return true; + } + return false; + } + + // Check start position + function start_position() { + var $startPosition = $customStart; + $startPosition = $startPosition ? $startPosition : $stickyWrap.offset().top; + return $startPosition - self.stickyOffset(); + } + + // Transform + function transformPrepare() { + if ( $isSticky ) { + $header.addClass( 'transform-go' ); // prevent issues when scrolling + } + if ( 0 === self.config.windowTop ) { + $header.removeClass( 'transform-prepare' ); + } else if ( pastheader() ) { + $header.addClass( 'transform-prepare' ); + } else { + $header.removeClass( 'transform-prepare' ); + } + } + + // Swap logo + function swapLogo() { + + if ( ! $stickyLogo || ! $headerLogo ) { + return; + } + + if ( $isLogoSwapped ) { + + $headerLogo.attr( 'src', $headerLogoSrc ); + self.config.siteLogoHeight = self.config.$siteLogo.height(); + + $isLogoSwapped = false; + + } else { + + $headerLogo.attr( 'src', $stickyLogo ); + self.config.siteLogoHeight = self.config.$siteLogo.height(); + + $isLogoSwapped = true; + + } + + } + + // Shrink/unshrink header + function shrink() { + + var checks = maybeShrink; + + if ( pastBreakPoint() ) { + if ( $mobileSupport && ( 'icon_buttons' == self.config.mobileMenuToggleStyle || 'fixed_top' == self.config.mobileMenuToggleStyle ) ) { + checks = true + } else { + checks = false; + } + } + + if ( checks && pastheader() ) { + + if ( ! $isShrunk && $isSticky ) { + $header.addClass( 'sticky-header-shrunk' ); + $isShrunk = true; + } + + } else { + + $header.removeClass( 'sticky-header-shrunk' ); + $isShrunk = false; + + } + + } + + // Set sticky + function setSticky() { + + // Already stuck + if ( $isSticky ) { + return; + } + + // Custom Sticky logo + swapLogo(); + + // Add wrap class and toggle sticky class + $stickyWrap + .css( 'height', $headerHeight ) + .removeClass( 'not-sticky' ) + .addClass( 'is-sticky' ); + + // Tweak header + $header.removeClass( 'dyn-styles' ).css( { + 'top' : self.stickyOffset(), + 'width' : $stickyWrap.width() + } ); + + // Add transform go class + if ( $header.hasClass( 'transform-prepare' ) ) { + $header.addClass( 'transform-go' ); + } + + // Set sticky to true + $isSticky = true; + + } + + // Destroy actions + function destroyActions() { + + // Reset logo + swapLogo(); + + // Remove sticky wrap height and toggle sticky class + $stickyWrap.removeClass( 'is-sticky' ).addClass( 'not-sticky' ); + + // Do not remove height on sticky header for shrink header incase animation isn't done yet + if ( ! $header.hasClass( 'shrink-sticky-header' ) ) { + $stickyWrap.css( 'height', '' ); + } + + // Reset header + $header.addClass( 'dyn-styles' ).css( { + 'width' : '', + 'top' : '' + } ).removeClass( 'transform-go' ); + + // Set sticky to false + $isSticky = false; + + // Make sure shrink header is removed + $header.removeClass( 'sticky-header-shrunk' ); // Fixes some bugs with really fast scrolling + $isShrunk = false; + + } + + // Destroy sticky + function destroySticky() { + + // Already unstuck + if ( ! $isSticky ) { + return; + } + + if ( $customStart ) { + $header.removeClass( 'transform-go' ); + if ( $isShrunk ) { + $header.removeClass( 'sticky-header-shrunk' ); + $isShrunk = false; + } + } else { + $header.removeClass( 'transform-prepare' ); + } + + destroyActions(); + + } + + // On load check + function initResizeSetSticky() { + + if ( ! $mobileSupport && pastBreakPoint() ) { + return; + } + + //$header.addClass( 'transform-go' ); + + if ( self.config.windowTop > start_position() && 0 !== self.config.windowTop ) { + setSticky(); + } + + if ( maybeShrink ) { + shrink(); + } + + } + + // On scroll function + function onScroll() { + + // Disable on mobile devices + if ( ! $mobileSupport && pastBreakPoint() ) { + return; + } + + // Animate scroll with custom start + if ( $customStart ) { + transformPrepare(); + } + + // Destroy sticky at top + if ( 0 === self.config.windowTop ) { + destroySticky(); + return; + } + + // Set or destroy sticky + if ( self.config.windowTop >= start_position() ) { + setSticky(); + } else { + destroySticky(); + } + + // Shrink + if ( maybeShrink ) { + shrink(); + } + + } + + // On resize function + function onResize() { + + // Check if header is disabled on mobile if not destroy on resize + if ( ! $mobileSupport && pastBreakPoint() ) { + destroySticky(); + $header.removeClass( 'transform-prepare' ); // important! + } else { + + // Update sticky + if ( $isSticky ) { + + // Update wrapper height + if ( ! $header.hasClass( 'shrink-sticky-header' ) ) { + $stickyWrap.css( 'height', self.config.siteHeaderHeight ); + } + + // Update sticky width and top offset + $header.css( { + 'top' : self.stickyOffset(), + 'width' : $stickyWrap.width() + } ); + + } + + // Add sticky + else { + initResizeSetSticky(); + } + + } + + // Shrink + if ( maybeShrink ) { + shrink(); + } + + } // End onResize + + // Fire on init + initResizeSetSticky(); + + // Fire onscroll event + $window.scroll( function() { + if ( self.config.$hasScrolled ) { + onScroll(); + } + } ); + + // Fire onResize + $window.resize( function() { + if ( self.config.widthChanged || self.config.heightChanged ) { + onResize(); + } + } ); + + // Destroy and run onResize function on orientation change + $window.on( 'orientationchange' , function() { + destroySticky(); + initResizeSetSticky(); + } ); + + }, + + /** + * Sticky Header Menu + * + * @since 3.4.0 + */ + stickyHeaderMenu: function() { + var self = this; + + // Return if disabled + if ( ! self.config.hasStickyNavbar ) { + return; + } + + // Main vars + var $navWrap = self.config.$siteNavWrap, + $isSticky = false, + $window = self.config.$window, + elIndex = $( $navWrap ).index(), + //$mobileSupport = wpexLocalize.hasStickyNavbarMobile, + $stickyWrap = $( '' ); + + // Define sticky wrap + $navWrap.wrapAll( $stickyWrap ); + $stickyWrap = $( '#site-navigation-sticky-wrapper' ); + + // Add offsets + var $stickyWrapTop = $stickyWrap.offset().top, + $stickyOffset = self.stickyOffset(), + $setStickyPos = $stickyWrapTop - $stickyOffset; + + // Shrink header function + function setSticky() { + + // Already sticky + if ( $isSticky ) { + return; + } + + // Add wrap class and toggle sticky class + $stickyWrap + .css( 'height', self.config.$siteNavWrap.outerHeight() ) + .removeClass( 'not-sticky' ) + .addClass( 'is-sticky' ); + + // Add CSS to topbar + $navWrap.css( { + 'top' : self.stickyOffset(), + 'width' : $stickyWrap.width() + } ); + + // Remove header dynamic styles + self.config.$siteHeader.removeClass( 'dyn-styles' ); + + // Update shrunk var + $isSticky = true; + + } + + // Un-Shrink header function + function destroySticky() { + + // Not shrunk + if ( ! $isSticky ) { + return; + } + + // Remove sticky wrap height and toggle sticky class + $stickyWrap + .css( 'height', '' ) + .removeClass( 'is-sticky' ) + .addClass( 'not-sticky' ); + + // Remove navbar width + $navWrap.css( { + 'width' : '', + 'top' : '' + } ); + + // Re-add dynamic header styles + self.config.$siteHeader.addClass( 'dyn-styles' ); + + // Update shrunk var + $isSticky = false; + + } + + // On load check + function initResizeSetSticky() { + + // Disable on mobile devices + if ( self.config.viewportWidth <= wpexLocalize.stickyNavbarBreakPoint ) { + return; + } + + // Sticky menu + if ( self.config.windowTop >= $setStickyPos && 0 !== self.config.windowTop ) { + setSticky(); + } else { + destroySticky(); + } + + } + + // Sticky check / enable-disable + function onScroll() { + + // Disable on mobile devices + if ( self.config.viewportWidth <= wpexLocalize.stickyNavbarBreakPoint ) { + return; + } + + // Destroy sticky at top and prevent sticky at top (since its already at top) + if ( 0 === self.config.windowTop ) { + if ( $isSticky ) { + destroySticky(); + } + return; + } + + // Sticky menu + if ( self.config.windowTop >= $setStickyPos ) { + setSticky(); + } else { + destroySticky(); + } + + } + + // On resize function + function onResize() { + + // Check if sticky is disabled on mobile if not destroy on resize + if ( self.config.viewportWidth <= wpexLocalize.stickyNavbarBreakPoint ) { + destroySticky(); + } + + // Update width + if ( $isSticky ) { + $navWrap.css( 'width', $stickyWrap.width() ); + } else { + initResizeSetSticky(); + } + + } + + // Fire on init + initResizeSetSticky(); + + // Fire onscroll event + $window.scroll( function() { + if ( self.config.$hasScrolled ) { + onScroll(); + } + } ); + + // Fire onResize + $window.resize( function() { + onResize(); + } ); + + // Fire resize on flip + $window.on( 'orientationchange' , function() { + destroySticky(); + initResizeSetSticky(); + } ); + + }, + + /** + * Sticky Visual Composer Navbar + * + * @since 3.3.2 + */ + stickyVcexNavbar: function() { + var self = this; + var $nav = $( '.vcex-navbar-sticky' ); + + if ( ! $nav.length ) { + return; + } + + $nav.each( function() { + + var $this = $( this ); + var $isSticky = false; + var $window = self.config.$window; + var $stickyEndPoint = $this.data( 'sticky-endpoint' ) ? $( $this.data( 'sticky-endpoint' ) ) : ''; + + // Add sticky wrap + var $stickyWrap = $( '
' ); + $this.wrapAll( $stickyWrap ); + $stickyWrap = $this.parent( '.vcex-navbar-sticky-wrapper' ); + + // Set sticky + function setSticky( $offset ) { + + // Already sticky or hidden + if ( $isSticky || ! $this.is( ':visible' ) ) { + return; + } + + // Set placeholder + $stickyWrap + .css( 'height', $this.outerHeight() ) + .removeClass( 'not-sticky' ) + .addClass( 'is-sticky' ); + + // Position Fixed nav + $this.css( { + 'top' : $offset, + 'width' : $stickyWrap.width() + } ); + + // Update sticky var + $isSticky = true; + + } + + // Check sticky offSet based on other sticky elements + function getStickyOffset() { + + var offset = 0; + var $stickyTopbar = $( '#top-bar-wrap-sticky-wrapper' ); + var $stickyHeader = $( '#site-header-sticky-wrapper' ); + var $stickyHeaderNavbar = $( '#site-navigation-sticky-wrapper' ); + var $mobileMenu = $( '#wpex-mobile-menu-fixed-top' ); + + if ( $stickyTopbar.is( ':visible' ) ) { + if ( self.config.hasStickyTopBarMobile + || self.config.viewportWidth >= wpexLocalize.stickyTopBarBreakPoint + ) { + offset = offset + $stickyTopbar.outerHeight(); + } + } + + if ( $stickyHeader.is( ':visible' ) ) { + if ( self.config.hasStickyMobileHeader + || self.config.viewportWidth >= wpexLocalize.stickyHeaderBreakPoint + ) { + if ( self.config.$siteHeader.hasClass( 'shrink-sticky-header' ) ) { + offset = offset + parseInt( wpexLocalize.shrinkHeaderHeight ); + } else { + offset = offset + $stickyHeader.outerHeight(); + } + } + } + + if ( self.config.hasStickyNavbar && $stickyHeaderNavbar.is( ':visible' ) ) { + if ( self.config.hasStickyMobileHeader + || ( self.config.viewportWidth >= wpexLocalize.stickyNavbarBreakPoint ) + ) { + offset = offset + $stickyHeaderNavbar.outerHeight(); + } + } + + if ( $mobileMenu.is( ':visible' ) ) { + offset = offset + $mobileMenu.outerHeight(); + } + + if ( self.config.$wpAdminBar && self.config.$wpAdminBar.is( ':visible' ) ) { + offset = offset + self.config.$wpAdminBar.outerHeight(); + } + + return offset; + + } + + // Un-Shrink header function + function destroySticky() { + + // Not shrunk + if ( ! $isSticky ) { + return; + } + + // Remove sticky wrap height and toggle sticky class + $stickyWrap + .css( 'height', '' ) + .removeClass( 'is-sticky' ) + .addClass( 'not-sticky' ); + + // Remove navbar width + $this.css( { + 'width' : '', + 'top' : '' + } ); + + // Update shrunk var + $isSticky = false; + + } + + // On scroll function + function stickyCheck() { + + var stickyOffset = getStickyOffset(); + var stickyWrapTop = $stickyWrap.offset().top; + var setStickyPos = stickyWrapTop - stickyOffset; + + if ( self.config.windowTop > setStickyPos && 0 !== self.config.windowTop ) { + setSticky( stickyOffset ); + if ( $stickyEndPoint.length && $stickyEndPoint.is( ':visible' ) ) { + if ( self.config.windowTop > ( $stickyEndPoint.offset().top - stickyOffset - $this.outerHeight() ) ) { + $stickyWrap.addClass( 'sticky-hidden' ); + } else { + $stickyWrap.removeClass( 'sticky-hidden' ); + } + } + } else { + destroySticky(); + } + + } + + // On resize function + function onResize() { + + // Should it be sticky? + stickyCheck(); + + // Sticky fixes + if ( $isSticky ) { + + // Destroy if hidden + if ( ! $this.is( ':visible' ) ) { + destroySticky(); + } + + // Set correct height on wrapper + $stickyWrap.css( 'height', $this.outerHeight() ); + + // Set correct width and offset value on sticky element + $this.css( { + 'top' : getStickyOffset(), + 'width' : $stickyWrap.width() + } ); + + } + + // Should it become sticky? + else { + stickyCheck(); + } + + } + + // Fire on init + stickyCheck(); + + // Fire onscroll event + $window.scroll( function() { + if ( self.config.$hasScrolled ) { + stickyCheck(); + } + } ); + + // Fire onResize + $window.resize( function() { + onResize(); + } ); + + // Fire resize on flip + $window.on( 'orientationchange' , function( e ) { + destroySticky(); + stickyCheck(); + } ); + + } ); // End each + }, + + /** + * Infinite Scroll + * + * @since 3.5.0 + */ + infiniteScrollInit: function() { + + var self = this; + + var $container = $( '#blog-entries' ); + + $container.infinitescroll( wpexInfiniteScroll, function( newElements ) { + + var $newElems = $( newElements ).css( 'opacity', 0 ); + + $newElems.imagesLoaded( function() { + + if ( $container.hasClass( 'blog-masonry-grid' ) ) { + $container.isotope( 'appended', $newElems ); + $newElems.css( 'opacity', 0 ); + } + + if ( typeof retinajs !== 'undefined' && $.isFunction( retinajs ) ) { + retinajs(); + } + + $newElems.animate( { + opacity: 1 + } ); + + $container.trigger( 'wpexinfiniteScrollLoaded', [$newElems] ); + + self.sliderPro( $newElems ); + self.iLightbox( $newElems ); + + if ( $.fn.wpexEqualHeights !== undefined ) { + $( '.blog-equal-heights' ).wpexEqualHeights( { + children : '.blog-entry-inner' + } ); + } + + if ( typeof( $.fn.mediaelementplayer ) !== 'undefined' ) { + $newElems.find( 'audio, video' ).mediaelementplayer(); + } + + } ); + + } ); + + }, + + /** + * Load More pagination + * + * @since 4.4.1 + */ + loadMore: function() { + + var self = this; + var $loadMore = $( '.wpex-load-more' ); + + if ( ! $loadMore.length ) { + return; + } + + $loadMore.each( function() { + + var $button = $( this ); + var $buttonInner = $button.find( '.theme-button-inner' ); + var loading = false; + var text = wpexLocalize.loadMore.text; + var ajaxUrl = wpexLocalize.ajaxurl; + var loadingText = wpexLocalize.loadMore.loadingText; + var failedText = wpexLocalize.loadMore.failedText; + var buttonData = $button.data( 'loadmore' ); + var $grid = $( buttonData.grid ); + var page = 2; + + if ( 1 != buttonData.maxPages ) { + $button.addClass( 'wpex-visible' ); + } + + var loadmoreData = buttonData; + + $button.on( 'click', function() { + + if ( ! loading ) { + + loading = true; + + $button.addClass( 'loading' ); + $buttonInner.text( loadingText ); + + var data = { + action : 'wpex_ajax_load_more', + nonce : buttonData.nonce, + page : page, + loadmore : loadmoreData + }; + + $.post( ajaxUrl, data, function( res ) { + + // Ajax request successful + if ( res.success ) { + + //console.log( res.data ); + + // Increase page + page = page + 1; + + // Define vars + var $newElements = $( res.data ); + $newElements.css( 'opacity', 0 ); // hide until images are loaded + + // Remove duplicate posts (sticky) + $newElements.each( function() { + var $this = $( this ); + if ( $this.hasClass( 'sticky' ) ) { + $this.addClass( 'wpex-duplicate' ); + } + } ); + + $grid.append( $newElements ).imagesLoaded( function() { + + if ( $.fn.wpexEqualHeights !== undefined ) { + $( '.blog-equal-heights' ).wpexEqualHeights( { + children : '.blog-entry-inner' + } ); + } + + if ( $grid.hasClass( 'blog-masonry-grid' ) ) { + $grid.isotope( 'appended', $newElements ); + //$grid.isotope( 'appended', $( $newElements ) ).isotope( 'layout' ); + } + + self.iLightbox( $newElements ); + self.overlayHovers( $newElements ); + + $grid.trigger( 'wpexLoadMoreAddedHidden', [$newElements] ); + + $newElements.css( 'opacity', 1 ); + + if ( typeof retinajs !== 'undefined' && $.isFunction( retinajs ) ) { + retinajs(); + } + + self.sliderPro( $newElements ); + + if ( typeof( $.fn.mediaelementplayer ) !== 'undefined' ) { + $newElements.find( 'audio, video' ).mediaelementplayer(); + } + + $grid.trigger( 'wpexLoadMoreAddedVisible', [$newElements] ); + + // Reset button + $button.removeClass( 'loading' ); + $buttonInner.text( text ); + + // Hide button + if ( ( page - 1 ) == buttonData.maxPages ) { + $button.hide(); + } + + // Set loading to false + loading = false; + + } ); // End images loaded + + } // End success + + else { + + $buttonInner.text( failedText ); + + console.log( res ); + + } + + } ).fail( function( xhr, textGridster, e ) { + + console.log( xhr.responseText ); + + } ); + + } // end loading check + + } ); + + } ); + + }, + + /** + * Contact form 7 switch preloader for txt + * + * @since 3.6.0 + */ + ctf7Preloader: function() { + + // Return if disabled + if ( ! wpexLocalize.altercf7Prealoader ) { + return; + } + + // Forms + var $forms = $( 'form.wpcf7-form' ); + + // Loop through forms + $forms.each( function() { + + var $this = $( this ); + + // Find button + var $button = $this.find( '.wpcf7-submit' ); + + // Hide loader if button found + if ( $button.length ) { + + // Hide preLoader + $this.find( '.ajax-loader' ).remove(); + + // Add font awesome spinner + var $customLoader = $( '' ); + $button.after( $customLoader ); + + // Show new spinner on Send button click + $button.on( 'click', function() { + $customLoader.addClass( 'visible' ); + } ); + + // Hide new spinner on result + $( 'div.wpcf7' ).on( 'wpcf7:invalid wpcf7:spam wpcf7:mailsent wpcf7:mailfailed', function() { + $customLoader.removeClass( 'visible' ); + } ); + + } + + } ); + + }, + + /** + * Visual Composer Slider & Accordions + * + * @since 4.2.1 + */ + vcTabsTogglesJS: function() { + var self = this; + + // Only needed when VC is enabled + if ( ! this.config.$body.hasClass( 'wpb-js-composer' ) ) { + return; + } + + function onShow() { + var $this = $( this ); + + // Sliders + $this.find( '.wpex-slider' ).each( function() { + $( this ).sliderPro( 'update' ); + } ); + + // Grids + $this.find( '.vcex-isotope-grid' ).each( function() { + $( this ).isotope( 'layout' ); + } ); + + // Milestones + $this.find( '.vcex-milestone' ).each( function() { + self.milestone( $( this ) ); + } ); + + } + + // Re-trigger/update things when opening VC tabs + $( '.vc_tta-tabs' ).on( 'show.vc.tab', onShow ); + + // Re-trigger slider on tabs change + $( '.vc_tta-accordion' ).on( 'show.vc.accordion', onShow ); + + // Tab clicks custom checks - due to issues with show.vc.tab not triggering on click in v5.4.3 + // Front-end only (breaks back-end tabs and not needed there apparently) + self.config.$document.on( 'click.vc.tabs.data-api', '[data-vc-tabs]', function( e ) { + + if ( self.config.$body.hasClass( 'vc_editor' ) ) { + return; + } + + var tab = $( $( this ).attr( 'href' ) ); + + if ( tab.length ) { + + // Sliders + tab.find( '.wpex-slider' ).each( function() { + $( this ).sliderPro( 'update' ); + } ); + + // Grids + tab.find( '.vcex-isotope-grid' ).each( function() { + $( this ).isotope( 'layout' ); + } ); + + } + + } ); + + }, + + /** + * Visual Composer Accessability fixes + * + * @since 4.5 + */ + vcAccessability: function() { + + if ( ! this.config.vcActive ) { + return; + } + + // Add tab index to toggles and toggle on enter + var $toggles = $( '.vc_toggle .vc_toggle_title' ); + $toggles.each( function( index ) { + var $this = $( this ); + $this.attr( 'tabindex', 0 ); + $this.on( 'keydown', function( e ) { + if ( 13 == e.which ) { + $this.trigger( 'click' ); + } + } ); + } ); + + // Tabs + var $tabContainers = $( '.vc_tta-container' ); + + var tabClick = function( $thisTab, $allTabs, $tabPanels, i ) { + $allTabs.attr( 'tabindex', -1 ); + $thisTab.attr( 'tabindex', 0 ).focus().click(); + } + + $tabContainers.each( function() { + + var $tabContainer = $( this ), + $tabs = $tabContainer.find( '.vc_tta-tab > a' ), + $panels = $tabContainer.find( '.vc_tta-panels' ); + + $tabs.each( function( index ) { + + var $tab = $( this ); + + if ( 0 == index ) { + $tab.attr( 'tabindex', 0 ); + } else { + $tab.attr( 'tabindex', -1 ); + } + + $tab.on( 'keydown', function( e ) { + + var $this = $( this ), + keyCode = e.which, + $nextTab = $this.parent().next().is( 'li.vc_tta-tab' ) ? $this.parent().next().find( 'a' ) : false, + $previousTab = $this.parent().prev().is( 'li.vc_tta-tab' ) ? $this.parent().prev().find( 'a' ) : false, + $firstTab = $this.parent().parent().find( 'li.vc_tta-tab:first' ).find( 'a' ), + $lastTab = $this.parent().parent().find( 'li.vc_tta-tab:last' ).find( 'a' ); + + switch( keyCode ) { + + // Left/Up + case 37 : + case 38 : + e.preventDefault(); + e.stopPropagation(); + if ( ! $previousTab) { + tabClick( $lastTab, $tabs, $panels ); + } else { + tabClick( $previousTab, $tabs, $panels ); + } + break; + + // Right/Down + case 39 : + case 40 : + e.preventDefault(); + e.stopPropagation(); + if ( ! $nextTab ) { + tabClick( $firstTab, $tabs, $panels ); + } else { + tabClick( $nextTab, $tabs, $panels ); + } + break; + + // Home + case 36 : + e.preventDefault(); + e.stopPropagation(); + tabClick( $firstTab, $tabs, $panels ); + break; + // End + case 35 : + e.preventDefault(); + e.stopPropagation(); + tabClick( $lastTab, $tabs, $panels ); + break; + + // Enter/Space + case 13 : + case 32 : + e.preventDefault(); + e.stopPropagation(); + break; + + } // end switch + + } ); + + } ); + + } ); + + }, + + /** + * Removes duplicate VC elements added by Total (overlays, parallax) + * + * @since 4.0 + */ + vcexRemoveiFrameDups: function( $context ) { + + var $this = $context; + var $module = $this.children( ':first' ); + + if ( ! $module.length ) { + return; + } + + // Overlays + var $overlays = $module.find( '> .wpex-bg-overlay-wrap' ); + + if ( $module.hasClass( 'wpex-has-overlay' ) ) { + $overlays.not( ':first' ).remove(); + } else if ( $overlays.length ) { + $overlays.remove(); + } + + // Self-hosted Videos + var $videos = $module.find( '> .wpex-video-bg-wrap' ); + + if ( $module.hasClass( 'wpex-has-video-bg' ) ) { + $videos.not( ':first' ).remove(); + } else if ( $videos.length ) { + $videos.remove(); + } + + // Parallax + var $parallax = $module.find( '> .wpex-parallax-bg' ); + + if ( $module.hasClass( 'wpex-parallax-bg-wrap' ) ) { + $parallax.not( ':first' ).remove(); + } else if ( $parallax.length ) { + $parallax.remove(); + } + + // Video Backgrounds + // Deprecated? @todo Remove & test + var $videoOverlays = $module.find( '> .wpex-video-bg-overlay' ); + if ( $videoOverlays.length ) { + $videoOverlays.not( ':first' ).remove(); + } + + }, + + /** + * Visual Composer Updates/Adding + * + * @since 3.6.0 + */ + vcPageEditable: function() { + var self = this, + $modelId = ''; + + // Only needed in composer mode + if ( ! self.config.$body.hasClass( 'compose-mode' ) ) { + return; + } + + // Store model ID when events change + parent.vc.events.on( 'shortcodes:add shortcodes:update shortcodes:clone', function( model ) { + $modelId = model.id; + } ); + + // Re-run functions on each VC reload + self.config.$window.on( 'vc_reload', function() { + self.equalHeights(); + self.sliderPro(); + self.wpexOwlCarousel(); + self.vcexFilterNav(); + self.customHovers(); + self.responsiveCSS(); + if ( $modelId ) { + var $context = $( '[data-model-id=' + $modelId + ']' ); + self.isotopeGrids( $context ); + self.vcPageEditableFuncs( $context ); + self.vcexRemoveiFrameDups( $context ); + } else { + self.isotopeGrids(); + } + } ); + + }, + + /** + * Visual Composer Trigger JS + * + * @since 3.6.0 + */ + vcPageEditableFuncs: function( $context ) { + + // Globals in context + this.parallax( $context ); + this.responsiveText( $context ); + this.overlayHovers( $context ); + this.iLightbox( $context ); + + // Module dependent + if ( $context.hasClass( 'vc_vcex_skillbar' ) ) { + this.skillbar( $context ); + return; + } + + if ( $context.hasClass( 'vc_vc_wp_custommenu' ) ) { + this.menuWidgetAccordion( $context ); + return; + } + + if ( $context.hasClass( 'vc_vcex_form_shortcode' ) ) { + this.customSelects( $context ); + return; + } + + if ( $context.hasClass( 'vc_vcex_milestone' ) ) { + this.milestone( $context ); + return; + } + + if ( $context.hasClass( 'vc_vcex_image_ba' ) ) { + this.twentytwenty( $context ); + return; + } + + if ( $context.hasClass( 'vc_vcex_animated_text' ) ) { + this.typedText( $context ); + return; + } + + if ( $context.hasClass( 'vc_vcex_countdown' ) ) { + this.countdown( $context ); + return; + } + + }, + + /** + * WooCommerce Gallery functions + * + * @since 4.1 + */ + wooGallery: function() { + + if ( typeof wc_single_product_params === 'undefined' || ! wc_single_product_params.flexslider.directionNav ) { + return; + } + + var self = this; + + var $wooGallery = $( '.woocommerce-product-gallery--with-images' ); + + if ( ! $wooGallery.length ) { + return; + } + + function setWooSliderArrows() { + + $wooGallery.each( function() { + + var $this = $( this ); + var $nav = $( this ).find( '.flex-direction-nav' ); + var $thumbsNav = $( this ).find( '.flex-control-thumbs' ); + + if ( $nav.length && $thumbsNav.length ) { + + var thumbsNavHeight = $thumbsNav.outerHeight(); + var arrowHeight = $nav.find( 'a' ).outerHeight(); + var arrowTopoffset = - ( thumbsNavHeight + arrowHeight ) / 2; + + if ( arrowTopoffset ) { + $this.find( '.flex-direction-nav a' ).css( 'margin-top', arrowTopoffset ); + } + + } + + } ); + + } + + self.config.$window.on( 'load', function() { + setWooSliderArrows(); + } ); + + self.config.$window.resize( function() { + if ( self.config.widthChanged || self.config.heightChanged ) { + setWooSliderArrows(); + } + } ); + + }, + + /** + * Parses data to check if a value is defined in the data attribute and if not returns the fallback + * + * @since 2.0.0 + */ + parseData: function( val, fallback ) { + return ( typeof val !== 'undefined' ) ? val : fallback; + }, + + /** + * Returns extension from URL + */ + getUrlExtension: function( url ) { + var ext = url.split( '.' ).pop().toLowerCase(); + var extra = ext.indexOf( '?' ) !== -1 ? ext.split( '?' ).pop() : ''; + ext = ext.replace( extra, '' ); + return ext.replace( '?', '' ); + }, + + /** + * Check if window has scrolled to bottom of element + */ + scrolledToBottom: function( elem ) { + return this.config.windowTop >= elem.offset().top + elem.outerHeight() - window.innerHeight; + }, + + /** + * Check if an element is currently in the window view + */ + isElementInWindowView: function( elem ) { + var docViewTop = this.config.$window.scrollTop(); + var docViewBottom = docViewTop + this.config.windowHeight; + var elemTop = $(elem).offset().top; + var elemBottom = elemTop + $(elem).height(); + return ( ( elemBottom <= docViewBottom) && (elemTop >= docViewTop ) ); + }, + + /** + * Return tallest element + */ + getTallestEl: function( el ) { + var tallest; + var first = 1; + el.each( function() { + var $this = $( this ); + if ( first == 1 ) { + tallest = $this; + first = 0; + } else { + if ( tallest.height() < $this.height()) { + tallest = $this; + } + } + } ); + return tallest; + } + + }; // END totalTheme + + // Start things up + wpex.init(); + +} ) ( jQuery ); + + +/*! + * Isotope PACKAGED v2.2.2 + * + * Licensed GPLv3 for open source use + * or Isotope Commercial License for commercial use + * + * http://isotope.metafizzy.co + * Copyright 2015 Metafizzy + */ + +/** + * Bridget makes jQuery widgets + * v1.1.0 + * MIT license + */ + +( function( window ) { + + + +// -------------------------- utils -------------------------- // + +var slice = Array.prototype.slice; + +function noop() {} + +// -------------------------- definition -------------------------- // + +function defineBridget( $ ) { + +// bail if no jQuery +if ( !$ ) { + return; +} + +// -------------------------- addOptionMethod -------------------------- // + +/** + * adds option method -> $().plugin('option', {...}) + * @param {Function} PluginClass - constructor class + */ +function addOptionMethod( PluginClass ) { + // don't overwrite original option method + if ( PluginClass.prototype.option ) { + return; + } + + // option setter + PluginClass.prototype.option = function( opts ) { + // bail out if not an object + if ( !$.isPlainObject( opts ) ){ + return; + } + this.options = $.extend( true, this.options, opts ); + }; +} + +// -------------------------- plugin bridge -------------------------- // + +// helper function for logging errors +// $.error breaks jQuery chaining +var logError = typeof console === 'undefined' ? noop : + function( message ) { + console.error( message ); + }; + +/** + * jQuery plugin bridge, access methods like $elem.plugin('method') + * @param {String} namespace - plugin name + * @param {Function} PluginClass - constructor class + */ +function bridge( namespace, PluginClass ) { + // add to jQuery fn namespace + $.fn[ namespace ] = function( options ) { + if ( typeof options === 'string' ) { + // call plugin method when first argument is a string + // get arguments for method + var args = slice.call( arguments, 1 ); + + for ( var i=0, len = this.length; i < len; i++ ) { + var elem = this[i]; + var instance = $.data( elem, namespace ); + if ( !instance ) { + logError( "cannot call methods on " + namespace + " prior to initialization; " + + "attempted to call '" + options + "'" ); + continue; + } + if ( !$.isFunction( instance[options] ) || options.charAt(0) === '_' ) { + logError( "no such method '" + options + "' for " + namespace + " instance" ); + continue; + } + + // trigger method with arguments + var returnValue = instance[ options ].apply( instance, args ); + + // break look and return first value if provided + if ( returnValue !== undefined ) { + return returnValue; + } + } + // return this if no return value + return this; + } else { + return this.each( function() { + var instance = $.data( this, namespace ); + if ( instance ) { + // apply options & init + instance.option( options ); + instance._init(); + } else { + // initialize new instance + instance = new PluginClass( this, options ); + $.data( this, namespace, instance ); + } + }); + } + }; + +} + +// -------------------------- bridget -------------------------- // + +/** + * converts a Prototypical class into a proper jQuery plugin + * the class must have a ._init method + * @param {String} namespace - plugin name, used in $().pluginName + * @param {Function} PluginClass - constructor class + */ +$.bridget = function( namespace, PluginClass ) { + addOptionMethod( PluginClass ); + bridge( namespace, PluginClass ); +}; + +return $.bridget; + +} + +// transport +if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'jquery-bridget/jquery.bridget',[ 'jquery' ], defineBridget ); +} else if ( typeof exports === 'object' ) { + defineBridget( require('jquery') ); +} else { + // get jquery from browser global + defineBridget( window.jQuery ); +} + +})( window ); + +/*! + * eventie v1.0.6 + * event binding helper + * eventie.bind( elem, 'click', myFn ) + * eventie.unbind( elem, 'click', myFn ) + * MIT license + */ + +/*jshint browser: true, undef: true, unused: true */ +/*global define: false, module: false */ + +( function( window ) { + + + +var docElem = document.documentElement; + +var bind = function() {}; + +function getIEEvent( obj ) { + var event = window.event; + // add event.target + event.target = event.target || event.srcElement || obj; + return event; +} + +if ( docElem.addEventListener ) { + bind = function( obj, type, fn ) { + obj.addEventListener( type, fn, false ); + }; +} else if ( docElem.attachEvent ) { + bind = function( obj, type, fn ) { + obj[ type + fn ] = fn.handleEvent ? + function() { + var event = getIEEvent( obj ); + fn.handleEvent.call( fn, event ); + } : + function() { + var event = getIEEvent( obj ); + fn.call( obj, event ); + }; + obj.attachEvent( "on" + type, obj[ type + fn ] ); + }; +} + +var unbind = function() {}; + +if ( docElem.removeEventListener ) { + unbind = function( obj, type, fn ) { + obj.removeEventListener( type, fn, false ); + }; +} else if ( docElem.detachEvent ) { + unbind = function( obj, type, fn ) { + obj.detachEvent( "on" + type, obj[ type + fn ] ); + try { + delete obj[ type + fn ]; + } catch ( err ) { + // can't delete window object properties + obj[ type + fn ] = undefined; + } + }; +} + +var eventie = { + bind: bind, + unbind: unbind +}; + +// ----- module definition ----- // + +if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'eventie/eventie',eventie ); +} else if ( typeof exports === 'object' ) { + // CommonJS + module.exports = eventie; +} else { + // browser global + window.eventie = eventie; +} + +})( window ); + +/*! + * EventEmitter v4.2.11 - git.io/ee + * Unlicense - http://unlicense.org/ + * Oliver Caldwell - http://oli.me.uk/ + * @preserve + */ + +;(function () { + 'use strict'; + + /** + * Class for managing events. + * Can be extended to provide event functionality in other classes. + * + * @class EventEmitter Manages event registering and emitting. + */ + function EventEmitter() {} + + // Shortcuts to improve speed and size + var proto = EventEmitter.prototype; + var exports = this; + var originalGlobalValue = exports.EventEmitter; + + /** + * Finds the index of the listener for the event in its storage array. + * + * @param {Function[]} listeners Array of listeners to search through. + * @param {Function} listener Method to look for. + * @return {Number} Index of the specified listener, -1 if not found + * @api private + */ + function indexOfListener(listeners, listener) { + var i = listeners.length; + while (i--) { + if (listeners[i].listener === listener) { + return i; + } + } + + return -1; + } + + /** + * Alias a method while keeping the context correct, to allow for overwriting of target method. + * + * @param {String} name The name of the target method. + * @return {Function} The aliased method + * @api private + */ + function alias(name) { + return function aliasClosure() { + return this[name].apply(this, arguments); + }; + } + + /** + * Returns the listener array for the specified event. + * Will initialise the event object and listener arrays if required. + * Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them. + * Each property in the object response is an array of listener functions. + * + * @param {String|RegExp} evt Name of the event to return the listeners from. + * @return {Function[]|Object} All listener functions for the event. + */ + proto.getListeners = function getListeners(evt) { + var events = this._getEvents(); + var response; + var key; + + // Return a concatenated array of all matching events if + // the selector is a regular expression. + if (evt instanceof RegExp) { + response = {}; + for (key in events) { + if (events.hasOwnProperty(key) && evt.test(key)) { + response[key] = events[key]; + } + } + } + else { + response = events[evt] || (events[evt] = []); + } + + return response; + }; + + /** + * Takes a list of listener objects and flattens it into a list of listener functions. + * + * @param {Object[]} listeners Raw listener objects. + * @return {Function[]} Just the listener functions. + */ + proto.flattenListeners = function flattenListeners(listeners) { + var flatListeners = []; + var i; + + for (i = 0; i < listeners.length; i += 1) { + flatListeners.push(listeners[i].listener); + } + + return flatListeners; + }; + + /** + * Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful. + * + * @param {String|RegExp} evt Name of the event to return the listeners from. + * @return {Object} All listener functions for an event in an object. + */ + proto.getListenersAsObject = function getListenersAsObject(evt) { + var listeners = this.getListeners(evt); + var response; + + if (listeners instanceof Array) { + response = {}; + response[evt] = listeners; + } + + return response || listeners; + }; + + /** + * Adds a listener function to the specified event. + * The listener will not be added if it is a duplicate. + * If the listener returns true then it will be removed after it is called. + * If you pass a regular expression as the event name then the listener will be added to all events that match it. + * + * @param {String|RegExp} evt Name of the event to attach the listener to. + * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.addListener = function addListener(evt, listener) { + var listeners = this.getListenersAsObject(evt); + var listenerIsWrapped = typeof listener === 'object'; + var key; + + for (key in listeners) { + if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) { + listeners[key].push(listenerIsWrapped ? listener : { + listener: listener, + once: false + }); + } + } + + return this; + }; + + /** + * Alias of addListener + */ + proto.on = alias('addListener'); + + /** + * Semi-alias of addListener. It will add a listener that will be + * automatically removed after its first execution. + * + * @param {String|RegExp} evt Name of the event to attach the listener to. + * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.addOnceListener = function addOnceListener(evt, listener) { + return this.addListener(evt, { + listener: listener, + once: true + }); + }; + + /** + * Alias of addOnceListener. + */ + proto.once = alias('addOnceListener'); + + /** + * Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad. + * You need to tell it what event names should be matched by a regex. + * + * @param {String} evt Name of the event to create. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.defineEvent = function defineEvent(evt) { + this.getListeners(evt); + return this; + }; + + /** + * Uses defineEvent to define multiple events. + * + * @param {String[]} evts An array of event names to define. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.defineEvents = function defineEvents(evts) { + for (var i = 0; i < evts.length; i += 1) { + this.defineEvent(evts[i]); + } + return this; + }; + + /** + * Removes a listener function from the specified event. + * When passed a regular expression as the event name, it will remove the listener from all events that match it. + * + * @param {String|RegExp} evt Name of the event to remove the listener from. + * @param {Function} listener Method to remove from the event. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.removeListener = function removeListener(evt, listener) { + var listeners = this.getListenersAsObject(evt); + var index; + var key; + + for (key in listeners) { + if (listeners.hasOwnProperty(key)) { + index = indexOfListener(listeners[key], listener); + + if (index !== -1) { + listeners[key].splice(index, 1); + } + } + } + + return this; + }; + + /** + * Alias of removeListener + */ + proto.off = alias('removeListener'); + + /** + * Adds listeners in bulk using the manipulateListeners method. + * If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added. + * You can also pass it a regular expression to add the array of listeners to all events that match it. + * Yeah, this function does quite a bit. That's probably a bad thing. + * + * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once. + * @param {Function[]} [listeners] An optional array of listener functions to add. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.addListeners = function addListeners(evt, listeners) { + // Pass through to manipulateListeners + return this.manipulateListeners(false, evt, listeners); + }; + + /** + * Removes listeners in bulk using the manipulateListeners method. + * If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. + * You can also pass it an event name and an array of listeners to be removed. + * You can also pass it a regular expression to remove the listeners from all events that match it. + * + * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once. + * @param {Function[]} [listeners] An optional array of listener functions to remove. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.removeListeners = function removeListeners(evt, listeners) { + // Pass through to manipulateListeners + return this.manipulateListeners(true, evt, listeners); + }; + + /** + * Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level. + * The first argument will determine if the listeners are removed (true) or added (false). + * If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. + * You can also pass it an event name and an array of listeners to be added/removed. + * You can also pass it a regular expression to manipulate the listeners of all events that match it. + * + * @param {Boolean} remove True if you want to remove listeners, false if you want to add. + * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once. + * @param {Function[]} [listeners] An optional array of listener functions to add/remove. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) { + var i; + var value; + var single = remove ? this.removeListener : this.addListener; + var multiple = remove ? this.removeListeners : this.addListeners; + + // If evt is an object then pass each of its properties to this method + if (typeof evt === 'object' && !(evt instanceof RegExp)) { + for (i in evt) { + if (evt.hasOwnProperty(i) && (value = evt[i])) { + // Pass the single listener straight through to the singular method + if (typeof value === 'function') { + single.call(this, i, value); + } + else { + // Otherwise pass back to the multiple function + multiple.call(this, i, value); + } + } + } + } + else { + // So evt must be a string + // And listeners must be an array of listeners + // Loop over it and pass each one to the multiple method + i = listeners.length; + while (i--) { + single.call(this, evt, listeners[i]); + } + } + + return this; + }; + + /** + * Removes all listeners from a specified event. + * If you do not specify an event then all listeners will be removed. + * That means every event will be emptied. + * You can also pass a regex to remove all events that match it. + * + * @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.removeEvent = function removeEvent(evt) { + var type = typeof evt; + var events = this._getEvents(); + var key; + + // Remove different things depending on the state of evt + if (type === 'string') { + // Remove all listeners for the specified event + delete events[evt]; + } + else if (evt instanceof RegExp) { + // Remove all events matching the regex. + for (key in events) { + if (events.hasOwnProperty(key) && evt.test(key)) { + delete events[key]; + } + } + } + else { + // Remove all listeners in all events + delete this._events; + } + + return this; + }; + + /** + * Alias of removeEvent. + * + * Added to mirror the node API. + */ + proto.removeAllListeners = alias('removeEvent'); + + /** + * Emits an event of your choice. + * When emitted, every listener attached to that event will be executed. + * If you pass the optional argument array then those arguments will be passed to every listener upon execution. + * Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately. + * So they will not arrive within the array on the other side, they will be separate. + * You can also pass a regular expression to emit to all events that match it. + * + * @param {String|RegExp} evt Name of the event to emit and execute listeners for. + * @param {Array} [args] Optional array of arguments to be passed to each listener. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.emitEvent = function emitEvent(evt, args) { + var listeners = this.getListenersAsObject(evt); + var listener; + var i; + var key; + var response; + + for (key in listeners) { + if (listeners.hasOwnProperty(key)) { + i = listeners[key].length; + + while (i--) { + // If the listener returns true then it shall be removed from the event + // The function is executed either with a basic call or an apply if there is an args array + listener = listeners[key][i]; + + if (listener.once === true) { + this.removeListener(evt, listener.listener); + } + + response = listener.listener.apply(this, args || []); + + if (response === this._getOnceReturnValue()) { + this.removeListener(evt, listener.listener); + } + } + } + } + + return this; + }; + + /** + * Alias of emitEvent + */ + proto.trigger = alias('emitEvent'); + + /** + * Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on. + * As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it. + * + * @param {String|RegExp} evt Name of the event to emit and execute listeners for. + * @param {...*} Optional additional arguments to be passed to each listener. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.emit = function emit(evt) { + var args = Array.prototype.slice.call(arguments, 1); + return this.emitEvent(evt, args); + }; + + /** + * Sets the current value to check against when executing listeners. If a + * listeners return value matches the one set here then it will be removed + * after execution. This value defaults to true. + * + * @param {*} value The new value to check for when executing listeners. + * @return {Object} Current instance of EventEmitter for chaining. + */ + proto.setOnceReturnValue = function setOnceReturnValue(value) { + this._onceReturnValue = value; + return this; + }; + + /** + * Fetches the current value to check against when executing listeners. If + * the listeners return value matches this one then it should be removed + * automatically. It will return true by default. + * + * @return {*|Boolean} The current value to check for or the default, true. + * @api private + */ + proto._getOnceReturnValue = function _getOnceReturnValue() { + if (this.hasOwnProperty('_onceReturnValue')) { + return this._onceReturnValue; + } + else { + return true; + } + }; + + /** + * Fetches the events object and creates one if required. + * + * @return {Object} The events storage object. + * @api private + */ + proto._getEvents = function _getEvents() { + return this._events || (this._events = {}); + }; + + /** + * Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version. + * + * @return {Function} Non conflicting EventEmitter class. + */ + EventEmitter.noConflict = function noConflict() { + exports.EventEmitter = originalGlobalValue; + return EventEmitter; + }; + + // Expose the class either via AMD, CommonJS or the global object + if (typeof define === 'function' && define.amd) { + define('eventEmitter/EventEmitter',[],function () { + return EventEmitter; + }); + } + else if (typeof module === 'object' && module.exports){ + module.exports = EventEmitter; + } + else { + exports.EventEmitter = EventEmitter; + } +}.call(this)); + +/*! + * getStyleProperty v1.0.4 + * original by kangax + * http://perfectionkills.com/feature-testing-css-properties/ + * MIT license + */ + +/*jshint browser: true, strict: true, undef: true */ +/*global define: false, exports: false, module: false */ + +( function( window ) { + + + +var prefixes = 'Webkit Moz ms Ms O'.split(' '); +var docElemStyle = document.documentElement.style; + +function getStyleProperty( propName ) { + if ( !propName ) { + return; + } + + // test standard property first + if ( typeof docElemStyle[ propName ] === 'string' ) { + return propName; + } + + // capitalize + propName = propName.charAt(0).toUpperCase() + propName.slice(1); + + // test vendor specific properties + var prefixed; + for ( var i=0, len = prefixes.length; i < len; i++ ) { + prefixed = prefixes[i] + propName; + if ( typeof docElemStyle[ prefixed ] === 'string' ) { + return prefixed; + } + } +} + +// transport +if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'get-style-property/get-style-property',[],function() { + return getStyleProperty; + }); +} else if ( typeof exports === 'object' ) { + // CommonJS for Component + module.exports = getStyleProperty; +} else { + // browser global + window.getStyleProperty = getStyleProperty; +} + +})( window ); + +/*! + * getSize v1.2.2 + * measure size of elements + * MIT license + */ + +/*jshint browser: true, strict: true, undef: true, unused: true */ +/*global define: false, exports: false, require: false, module: false, console: false */ + +( function( window, undefined ) { + + + +// -------------------------- helpers -------------------------- // + +// get a number from a string, not a percentage +function getStyleSize( value ) { + var num = parseFloat( value ); + // not a percent like '100%', and a number + var isValid = value.indexOf('%') === -1 && !isNaN( num ); + return isValid && num; +} + +function noop() {} + +var logError = typeof console === 'undefined' ? noop : + function( message ) { + console.error( message ); + }; + +// -------------------------- measurements -------------------------- // + +var measurements = [ + 'paddingLeft', + 'paddingRight', + 'paddingTop', + 'paddingBottom', + 'marginLeft', + 'marginRight', + 'marginTop', + 'marginBottom', + 'borderLeftWidth', + 'borderRightWidth', + 'borderTopWidth', + 'borderBottomWidth' +]; + +function getZeroSize() { + var size = { + width: 0, + height: 0, + innerWidth: 0, + innerHeight: 0, + outerWidth: 0, + outerHeight: 0 + }; + for ( var i=0, len = measurements.length; i < len; i++ ) { + var measurement = measurements[i]; + size[ measurement ] = 0; + } + return size; +} + + + +function defineGetSize( getStyleProperty ) { + +// -------------------------- setup -------------------------- // + +var isSetup = false; + +var getStyle, boxSizingProp, isBoxSizeOuter; + +/** + * setup vars and functions + * do it on initial getSize(), rather than on script load + * For Firefox bug https://bugzilla.mozilla.org/show_bug.cgi?id=548397 + */ +function setup() { + // setup once + if ( isSetup ) { + return; + } + isSetup = true; + + var getComputedStyle = window.getComputedStyle; + getStyle = ( function() { + var getStyleFn = getComputedStyle ? + function( elem ) { + return getComputedStyle( elem, null ); + } : + function( elem ) { + return elem.currentStyle; + }; + + return function getStyle( elem ) { + var style = getStyleFn( elem ); + if ( !style ) { + logError( 'Style returned ' + style + + '. Are you running this code in a hidden iframe on Firefox? ' + + 'See http://bit.ly/getsizebug1' ); + } + return style; + }; + })(); + + // -------------------------- box sizing -------------------------- // + + boxSizingProp = getStyleProperty('boxSizing'); + + /** + * WebKit measures the outer-width on style.width on border-box elems + * IE & Firefox measures the inner-width + */ + if ( boxSizingProp ) { + var div = document.createElement('div'); + div.style.width = '200px'; + div.style.padding = '1px 2px 3px 4px'; + div.style.borderStyle = 'solid'; + div.style.borderWidth = '1px 2px 3px 4px'; + div.style[ boxSizingProp ] = 'border-box'; + + var body = document.body || document.documentElement; + body.appendChild( div ); + var style = getStyle( div ); + + isBoxSizeOuter = getStyleSize( style.width ) === 200; + body.removeChild( div ); + } + +} + +// -------------------------- getSize -------------------------- // + +function getSize( elem ) { + setup(); + + // use querySeletor if elem is string + if ( typeof elem === 'string' ) { + elem = document.querySelector( elem ); + } + + // do not proceed on non-objects + if ( !elem || typeof elem !== 'object' || !elem.nodeType ) { + return; + } + + var style = getStyle( elem ); + + // if hidden, everything is 0 + if ( style.display === 'none' ) { + return getZeroSize(); + } + + var size = {}; + size.width = elem.offsetWidth; + size.height = elem.offsetHeight; + + var isBorderBox = size.isBorderBox = !!( boxSizingProp && + style[ boxSizingProp ] && style[ boxSizingProp ] === 'border-box' ); + + // get all measurements + for ( var i=0, len = measurements.length; i < len; i++ ) { + var measurement = measurements[i]; + var value = style[ measurement ]; + value = mungeNonPixel( elem, value ); + var num = parseFloat( value ); + // any 'auto', 'medium' value will be 0 + size[ measurement ] = !isNaN( num ) ? num : 0; + } + + var paddingWidth = size.paddingLeft + size.paddingRight; + var paddingHeight = size.paddingTop + size.paddingBottom; + var marginWidth = size.marginLeft + size.marginRight; + var marginHeight = size.marginTop + size.marginBottom; + var borderWidth = size.borderLeftWidth + size.borderRightWidth; + var borderHeight = size.borderTopWidth + size.borderBottomWidth; + + var isBorderBoxSizeOuter = isBorderBox && isBoxSizeOuter; + + // overwrite width and height if we can get it from style + var styleWidth = getStyleSize( style.width ); + if ( styleWidth !== false ) { + size.width = styleWidth + + // add padding and border unless it's already including it + ( isBorderBoxSizeOuter ? 0 : paddingWidth + borderWidth ); + } + + var styleHeight = getStyleSize( style.height ); + if ( styleHeight !== false ) { + size.height = styleHeight + + // add padding and border unless it's already including it + ( isBorderBoxSizeOuter ? 0 : paddingHeight + borderHeight ); + } + + size.innerWidth = size.width - ( paddingWidth + borderWidth ); + size.innerHeight = size.height - ( paddingHeight + borderHeight ); + + size.outerWidth = size.width + marginWidth; + size.outerHeight = size.height + marginHeight; + + return size; +} + +// IE8 returns percent values, not pixels +// taken from jQuery's curCSS +function mungeNonPixel( elem, value ) { + // IE8 and has percent value + if ( window.getComputedStyle || value.indexOf('%') === -1 ) { + return value; + } + var style = elem.style; + // Remember the original values + var left = style.left; + var rs = elem.runtimeStyle; + var rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = value; + value = style.pixelLeft; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + + return value; +} + +return getSize; + +} + +// transport +if ( typeof define === 'function' && define.amd ) { + // AMD for RequireJS + define( 'get-size/get-size',[ 'get-style-property/get-style-property' ], defineGetSize ); +} else if ( typeof exports === 'object' ) { + // CommonJS for Component + module.exports = defineGetSize( require('desandro-get-style-property') ); +} else { + // browser global + window.getSize = defineGetSize( window.getStyleProperty ); +} + +})( window ); + +/*! + * docReady v1.0.4 + * Cross browser DOMContentLoaded event emitter + * MIT license + */ + +/*jshint browser: true, strict: true, undef: true, unused: true*/ +/*global define: false, require: false, module: false */ + +( function( window ) { + + + +var document = window.document; +// collection of functions to be triggered on ready +var queue = []; + +function docReady( fn ) { + // throw out non-functions + if ( typeof fn !== 'function' ) { + return; + } + + if ( docReady.isReady ) { + // ready now, hit it + fn(); + } else { + // queue function when ready + queue.push( fn ); + } +} + +docReady.isReady = false; + +// triggered on various doc ready events +function onReady( event ) { + // bail if already triggered or IE8 document is not ready just yet + var isIE8NotReady = event.type === 'readystatechange' && document.readyState !== 'complete'; + if ( docReady.isReady || isIE8NotReady ) { + return; + } + + trigger(); +} + +function trigger() { + docReady.isReady = true; + // process queue + for ( var i=0, len = queue.length; i < len; i++ ) { + var fn = queue[i]; + fn(); + } +} + +function defineDocReady( eventie ) { + // trigger ready if page is ready + if ( document.readyState === 'complete' ) { + trigger(); + } else { + // listen for events + eventie.bind( document, 'DOMContentLoaded', onReady ); + eventie.bind( document, 'readystatechange', onReady ); + eventie.bind( window, 'load', onReady ); + } + + return docReady; +} + +// transport +if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'doc-ready/doc-ready',[ 'eventie/eventie' ], defineDocReady ); +} else if ( typeof exports === 'object' ) { + module.exports = defineDocReady( require('eventie') ); +} else { + // browser global + window.docReady = defineDocReady( window.eventie ); +} + +})( window ); + +/** + * matchesSelector v1.0.3 + * matchesSelector( element, '.selector' ) + * MIT license + */ + +/*jshint browser: true, strict: true, undef: true, unused: true */ +/*global define: false, module: false */ + +( function( ElemProto ) { + + 'use strict'; + + var matchesMethod = ( function() { + // check for the standard method name first + if ( ElemProto.matches ) { + return 'matches'; + } + // check un-prefixed + if ( ElemProto.matchesSelector ) { + return 'matchesSelector'; + } + // check vendor prefixes + var prefixes = [ 'webkit', 'moz', 'ms', 'o' ]; + + for ( var i=0, len = prefixes.length; i < len; i++ ) { + var prefix = prefixes[i]; + var method = prefix + 'MatchesSelector'; + if ( ElemProto[ method ] ) { + return method; + } + } + })(); + + // ----- match ----- // + + function match( elem, selector ) { + return elem[ matchesMethod ]( selector ); + } + + // ----- appendToFragment ----- // + + function checkParent( elem ) { + // not needed if already has parent + if ( elem.parentNode ) { + return; + } + var fragment = document.createDocumentFragment(); + fragment.appendChild( elem ); + } + + // ----- query ----- // + + // fall back to using QSA + // thx @jonathantneal https://gist.github.com/3062955 + function query( elem, selector ) { + // append to fragment if no parent + checkParent( elem ); + + // match elem with all selected elems of parent + var elems = elem.parentNode.querySelectorAll( selector ); + for ( var i=0, len = elems.length; i < len; i++ ) { + // return true if match + if ( elems[i] === elem ) { + return true; + } + } + // otherwise return false + return false; + } + + // ----- matchChild ----- // + + function matchChild( elem, selector ) { + checkParent( elem ); + return match( elem, selector ); + } + + // ----- matchesSelector ----- // + + var matchesSelector; + + if ( matchesMethod ) { + // IE9 supports matchesSelector, but doesn't work on orphaned elems + // check for that + var div = document.createElement('div'); + var supportsOrphans = match( div, 'div' ); + matchesSelector = supportsOrphans ? match : matchChild; + } else { + matchesSelector = query; + } + + // transport + if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'matches-selector/matches-selector',[],function() { + return matchesSelector; + }); + } else if ( typeof exports === 'object' ) { + module.exports = matchesSelector; + } + else { + // browser global + window.matchesSelector = matchesSelector; + } + +})( Element.prototype ); + +/** + * Fizzy UI utils v1.0.1 + * MIT license + */ + +/*jshint browser: true, undef: true, unused: true, strict: true */ + +( function( window, factory ) { + /*global define: false, module: false, require: false */ + 'use strict'; + // universal module definition + + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'fizzy-ui-utils/utils',[ + 'doc-ready/doc-ready', + 'matches-selector/matches-selector' + ], function( docReady, matchesSelector ) { + return factory( window, docReady, matchesSelector ); + }); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + window, + require('doc-ready'), + require('desandro-matches-selector') + ); + } else { + // browser global + window.fizzyUIUtils = factory( + window, + window.docReady, + window.matchesSelector + ); + } + +}( window, function factory( window, docReady, matchesSelector ) { + + + +var utils = {}; + +// ----- extend ----- // + +// extends objects +utils.extend = function( a, b ) { + for ( var prop in b ) { + a[ prop ] = b[ prop ]; + } + return a; +}; + +// ----- modulo ----- // + +utils.modulo = function( num, div ) { + return ( ( num % div ) + div ) % div; +}; + +// ----- isArray ----- // + +var objToString = Object.prototype.toString; +utils.isArray = function( obj ) { + return objToString.call( obj ) == '[object Array]'; +}; + +// ----- makeArray ----- // + +// turn element or nodeList into an array +utils.makeArray = function( obj ) { + var ary = []; + if ( utils.isArray( obj ) ) { + // use object if already an array + ary = obj; + } else if ( obj && typeof obj.length == 'number' ) { + // convert nodeList to array + for ( var i=0, len = obj.length; i < len; i++ ) { + ary.push( obj[i] ); + } + } else { + // array of single index + ary.push( obj ); + } + return ary; +}; + +// ----- indexOf ----- // + +// index of helper cause IE8 +utils.indexOf = Array.prototype.indexOf ? function( ary, obj ) { + return ary.indexOf( obj ); + } : function( ary, obj ) { + for ( var i=0, len = ary.length; i < len; i++ ) { + if ( ary[i] === obj ) { + return i; + } + } + return -1; + }; + +// ----- removeFrom ----- // + +utils.removeFrom = function( ary, obj ) { + var index = utils.indexOf( ary, obj ); + if ( index != -1 ) { + ary.splice( index, 1 ); + } +}; + +// ----- isElement ----- // + +// http://stackoverflow.com/a/384380/182183 +utils.isElement = ( typeof HTMLElement == 'function' || typeof HTMLElement == 'object' ) ? + function isElementDOM2( obj ) { + return obj instanceof HTMLElement; + } : + function isElementQuirky( obj ) { + return obj && typeof obj == 'object' && + obj.nodeType == 1 && typeof obj.nodeName == 'string'; + }; + +// ----- setText ----- // + +utils.setText = ( function() { + var setTextProperty; + function setText( elem, text ) { + // only check setTextProperty once + setTextProperty = setTextProperty || ( document.documentElement.textContent !== undefined ? 'textContent' : 'innerText' ); + elem[ setTextProperty ] = text; + } + return setText; +})(); + +// ----- getParent ----- // + +utils.getParent = function( elem, selector ) { + while ( elem != document.body ) { + elem = elem.parentNode; + if ( matchesSelector( elem, selector ) ) { + return elem; + } + } +}; + +// ----- getQueryElement ----- // + +// use element as selector string +utils.getQueryElement = function( elem ) { + if ( typeof elem == 'string' ) { + return document.querySelector( elem ); + } + return elem; +}; + +// ----- handleEvent ----- // + +// enable .ontype to trigger from .addEventListener( elem, 'type' ) +utils.handleEvent = function( event ) { + var method = 'on' + event.type; + if ( this[ method ] ) { + this[ method ]( event ); + } +}; + +// ----- filterFindElements ----- // + +utils.filterFindElements = function( elems, selector ) { + // make array of elems + elems = utils.makeArray( elems ); + var ffElems = []; + + for ( var i=0, len = elems.length; i < len; i++ ) { + var elem = elems[i]; + // check that elem is an actual element + if ( !utils.isElement( elem ) ) { + continue; + } + // filter & find items if we have a selector + if ( selector ) { + // filter siblings + if ( matchesSelector( elem, selector ) ) { + ffElems.push( elem ); + } + // find children + var childElems = elem.querySelectorAll( selector ); + // concat childElems to filterFound array + for ( var j=0, jLen = childElems.length; j < jLen; j++ ) { + ffElems.push( childElems[j] ); + } + } else { + ffElems.push( elem ); + } + } + + return ffElems; +}; + +// ----- debounceMethod ----- // + +utils.debounceMethod = function( _class, methodName, threshold ) { + // original method + var method = _class.prototype[ methodName ]; + var timeoutName = methodName + 'Timeout'; + + _class.prototype[ methodName ] = function() { + var timeout = this[ timeoutName ]; + if ( timeout ) { + clearTimeout( timeout ); + } + var args = arguments; + + var _this = this; + this[ timeoutName ] = setTimeout( function() { + method.apply( _this, args ); + delete _this[ timeoutName ]; + }, threshold || 100 ); + }; +}; + +// ----- htmlInit ----- // + +// http://jamesroberts.name/blog/2010/02/22/string-functions-for-javascript-trim-to-camel-case-to-dashed-and-to-underscore/ +utils.toDashed = function( str ) { + return str.replace( /(.)([A-Z])/g, function( match, $1, $2 ) { + return $1 + '-' + $2; + }).toLowerCase(); +}; + +var console = window.console; +/** + * allow user to initialize classes via .js-namespace class + * htmlInit( Widget, 'widgetName' ) + * options are parsed from data-namespace-option attribute + */ +utils.htmlInit = function( WidgetClass, namespace ) { + docReady( function() { + var dashedNamespace = utils.toDashed( namespace ); + var elems = document.querySelectorAll( '.js-' + dashedNamespace ); + var dataAttr = 'data-' + dashedNamespace + '-options'; + + for ( var i=0, len = elems.length; i < len; i++ ) { + var elem = elems[i]; + var attr = elem.getAttribute( dataAttr ); + var options; + try { + options = attr && JSON.parse( attr ); + } catch ( error ) { + // log error, do not initialize + if ( console ) { + console.error( 'Error parsing ' + dataAttr + ' on ' + + elem.nodeName.toLowerCase() + ( elem.id ? '#' + elem.id : '' ) + ': ' + + error ); + } + continue; + } + // initialize + var instance = new WidgetClass( elem, options ); + // make available via $().data('layoutname') + var jQuery = window.jQuery; + if ( jQuery ) { + jQuery.data( elem, namespace, instance ); + } + } + }); +}; + +// ----- ----- // + +return utils; + +})); + +/** + * Outlayer Item + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'outlayer/item',[ + 'eventEmitter/EventEmitter', + 'get-size/get-size', + 'get-style-property/get-style-property', + 'fizzy-ui-utils/utils' + ], + function( EventEmitter, getSize, getStyleProperty, utils ) { + return factory( window, EventEmitter, getSize, getStyleProperty, utils ); + } + ); + } else if (typeof exports === 'object') { + // CommonJS + module.exports = factory( + window, + require('wolfy87-eventemitter'), + require('get-size'), + require('desandro-get-style-property'), + require('fizzy-ui-utils') + ); + } else { + // browser global + window.Outlayer = {}; + window.Outlayer.Item = factory( + window, + window.EventEmitter, + window.getSize, + window.getStyleProperty, + window.fizzyUIUtils + ); + } + +}( window, function factory( window, EventEmitter, getSize, getStyleProperty, utils ) { +'use strict'; + +// ----- helpers ----- // + +var getComputedStyle = window.getComputedStyle; +var getStyle = getComputedStyle ? + function( elem ) { + return getComputedStyle( elem, null ); + } : + function( elem ) { + return elem.currentStyle; + }; + + +function isEmptyObj( obj ) { + for ( var prop in obj ) { + return false; + } + prop = null; + return true; +} + +// -------------------------- CSS3 support -------------------------- // + +var transitionProperty = getStyleProperty('transition'); +var transformProperty = getStyleProperty('transform'); +var supportsCSS3 = transitionProperty && transformProperty; +var is3d = !!getStyleProperty('perspective'); + +var transitionEndEvent = { + WebkitTransition: 'webkitTransitionEnd', + MozTransition: 'transitionend', + OTransition: 'otransitionend', + transition: 'transitionend' +}[ transitionProperty ]; + +// properties that could have vendor prefix +var prefixableProperties = [ + 'transform', + 'transition', + 'transitionDuration', + 'transitionProperty' +]; + +// cache all vendor properties +var vendorProperties = ( function() { + var cache = {}; + for ( var i=0, len = prefixableProperties.length; i < len; i++ ) { + var prop = prefixableProperties[i]; + var supportedProp = getStyleProperty( prop ); + if ( supportedProp && supportedProp !== prop ) { + cache[ prop ] = supportedProp; + } + } + return cache; +})(); + +// -------------------------- Item -------------------------- // + +function Item( element, layout ) { + if ( !element ) { + return; + } + + this.element = element; + // parent layout class, i.e. Masonry, Isotope, or Packery + this.layout = layout; + this.position = { + x: 0, + y: 0 + }; + + this._create(); +} + +// inherit EventEmitter +utils.extend( Item.prototype, EventEmitter.prototype ); + +Item.prototype._create = function() { + // transition objects + this._transn = { + ingProperties: {}, + clean: {}, + onEnd: {} + }; + var el = $(this.element); + if(el.hasClass("row")){ + el.css("width","100%"); + }else if(el.filter("[class*='col-md']").length == 0){ + el.css("width","100%"); + } + this.css({ + position: 'absolute' + }); +}; + +// trigger specified handler for event type +Item.prototype.handleEvent = function( event ) { + var method = 'on' + event.type; + if ( this[ method ] ) { + this[ method ]( event ); + } +}; + +Item.prototype.getSize = function() { + this.size = getSize( this.element ); +}; + +/** + * apply CSS styles to element + * @param {Object} style + */ +Item.prototype.css = function( style ) { + var elemStyle = this.element.style; + + for ( var prop in style ) { + // use vendor property if available + var supportedProp = vendorProperties[ prop ] || prop; + elemStyle[ supportedProp ] = style[ prop ]; + } +}; + + // measure position, and sets it +Item.prototype.getPosition = function() { + var style = getStyle( this.element ); + var layoutOptions = this.layout.options; + var isOriginLeft = layoutOptions.isOriginLeft; + var isOriginTop = layoutOptions.isOriginTop; + var xValue = style[ isOriginLeft ? 'left' : 'right' ]; + var yValue = style[ isOriginTop ? 'top' : 'bottom' ]; + // convert percent to pixels + var layoutSize = this.layout.size; + var x = xValue.indexOf('%') != -1 ? + ( parseFloat( xValue ) / 100 ) * layoutSize.width : parseInt( xValue, 10 ); + var y = yValue.indexOf('%') != -1 ? + ( parseFloat( yValue ) / 100 ) * layoutSize.height : parseInt( yValue, 10 ); + + // clean up 'auto' or other non-integer values + x = isNaN( x ) ? 0 : x; + y = isNaN( y ) ? 0 : y; + // remove padding from measurement + x -= isOriginLeft ? layoutSize.paddingLeft : layoutSize.paddingRight; + y -= isOriginTop ? layoutSize.paddingTop : layoutSize.paddingBottom; + + this.position.x = x; + this.position.y = y; +}; + +// set settled position, apply padding +Item.prototype.layoutPosition = function() { + var layoutSize = this.layout.size; + var layoutOptions = this.layout.options; + var style = {}; + + // x + var xPadding = layoutOptions.isOriginLeft ? 'paddingLeft' : 'paddingRight'; + var xProperty = layoutOptions.isOriginLeft ? 'left' : 'right'; + var xResetProperty = layoutOptions.isOriginLeft ? 'right' : 'left'; + + var x = this.position.x + layoutSize[ xPadding ]; + // set in percentage or pixels + style[ xProperty ] = this.getXValue( x ); + // reset other property + style[ xResetProperty ] = ''; + + // y + var yPadding = layoutOptions.isOriginTop ? 'paddingTop' : 'paddingBottom'; + var yProperty = layoutOptions.isOriginTop ? 'top' : 'bottom'; + var yResetProperty = layoutOptions.isOriginTop ? 'bottom' : 'top'; + + var y = this.position.y + layoutSize[ yPadding ]; + // set in percentage or pixels + style[ yProperty ] = this.getYValue( y ); + // reset other property + style[ yResetProperty ] = ''; + + this.css( style ); + this.emitEvent( 'layout', [ this ] ); +}; + +Item.prototype.getXValue = function( x ) { + var layoutOptions = this.layout.options; + return layoutOptions.percentPosition && !layoutOptions.isHorizontal ? + ( ( x / this.layout.size.width ) * 100 ) + '%' : x + 'px'; +}; + +Item.prototype.getYValue = function( y ) { + var layoutOptions = this.layout.options; + return layoutOptions.percentPosition && layoutOptions.isHorizontal ? + ( ( y / this.layout.size.height ) * 100 ) + '%' : y + 'px'; +}; + + +Item.prototype._transitionTo = function( x, y ) { + this.getPosition(); + // get current x & y from top/left + var curX = this.position.x; + var curY = this.position.y; + + var compareX = parseInt( x, 10 ); + var compareY = parseInt( y, 10 ); + var didNotMove = compareX === this.position.x && compareY === this.position.y; + + // save end position + this.setPosition( x, y ); + + // if did not move and not transitioning, just go to layout + if ( didNotMove && !this.isTransitioning ) { + this.layoutPosition(); + return; + } + + var transX = x - curX; + var transY = y - curY; + var transitionStyle = {}; + transitionStyle.transform = this.getTranslate( transX, transY ); + + this.transition({ + to: transitionStyle, + onTransitionEnd: { + transform: this.layoutPosition + }, + isCleaning: true + }); +}; + +Item.prototype.getTranslate = function( x, y ) { + // flip cooridinates if origin on right or bottom + var layoutOptions = this.layout.options; + x = layoutOptions.isOriginLeft ? x : -x; + y = layoutOptions.isOriginTop ? y : -y; + + if ( is3d ) { + return 'translate3d(' + x + 'px, ' + y + 'px, 0)'; + } + + return 'translate(' + x + 'px, ' + y + 'px)'; +}; + +// non transition + transform support +Item.prototype.goTo = function( x, y ) { + this.setPosition( x, y ); + this.layoutPosition(); +}; + +// use transition and transforms if supported +Item.prototype.moveTo = supportsCSS3 ? + Item.prototype._transitionTo : Item.prototype.goTo; + +Item.prototype.setPosition = function( x, y ) { + this.position.x = parseInt( x, 10 ); + this.position.y = parseInt( y, 10 ); +}; + +// ----- transition ----- // + +/** + * @param {Object} style - CSS + * @param {Function} onTransitionEnd + */ + +// non transition, just trigger callback +Item.prototype._nonTransition = function( args ) { + this.css( args.to ); + if ( args.isCleaning ) { + this._removeStyles( args.to ); + } + for ( var prop in args.onTransitionEnd ) { + args.onTransitionEnd[ prop ].call( this ); + } +}; + +/** + * proper transition + * @param {Object} args - arguments + * @param {Object} to - style to transition to + * @param {Object} from - style to start transition from + * @param {Boolean} isCleaning - removes transition styles after transition + * @param {Function} onTransitionEnd - callback + */ +Item.prototype._transition = function( args ) { + // redirect to nonTransition if no transition duration + if ( !parseFloat( this.layout.options.transitionDuration ) ) { + this._nonTransition( args ); + return; + } + + var _transition = this._transn; + // keep track of onTransitionEnd callback by css property + for ( var prop in args.onTransitionEnd ) { + _transition.onEnd[ prop ] = args.onTransitionEnd[ prop ]; + } + // keep track of properties that are transitioning + for ( prop in args.to ) { + _transition.ingProperties[ prop ] = true; + // keep track of properties to clean up when transition is done + if ( args.isCleaning ) { + _transition.clean[ prop ] = true; + } + } + + // set from styles + if ( args.from ) { + this.css( args.from ); + // force redraw. http://blog.alexmaccaw.com/css-transitions + var h = this.element.offsetHeight; + // hack for JSHint to hush about unused var + h = null; + } + // enable transition + this.enableTransition( args.to ); + // set styles that are transitioning + this.css( args.to ); + + this.isTransitioning = true; + +}; + +// dash before all cap letters, including first for +// WebkitTransform => -webkit-transform +function toDashedAll( str ) { + return str.replace( /([A-Z])/g, function( $1 ) { + return '-' + $1.toLowerCase(); + }); +} + +var transitionProps = 'opacity,' + + toDashedAll( vendorProperties.transform || 'transform' ); + +Item.prototype.enableTransition = function(/* style */) { + // HACK changing transitionProperty during a transition + // will cause transition to jump + if ( this.isTransitioning ) { + return; + } + + // make `transition: foo, bar, baz` from style object + // HACK un-comment this when enableTransition can work + // while a transition is happening + // var transitionValues = []; + // for ( var prop in style ) { + // // dash-ify camelCased properties like WebkitTransition + // prop = vendorProperties[ prop ] || prop; + // transitionValues.push( toDashedAll( prop ) ); + // } + // enable transition styles + this.css({ + transitionProperty: transitionProps, + transitionDuration: this.layout.options.transitionDuration + }); + // listen for transition end event + this.element.addEventListener( transitionEndEvent, this, false ); +}; + +Item.prototype.transition = Item.prototype[ transitionProperty ? '_transition' : '_nonTransition' ]; + +// ----- events ----- // + +Item.prototype.onwebkitTransitionEnd = function( event ) { + this.ontransitionend( event ); +}; + +Item.prototype.onotransitionend = function( event ) { + this.ontransitionend( event ); +}; + +// properties that I munge to make my life easier +var dashedVendorProperties = { + '-webkit-transform': 'transform', + '-moz-transform': 'transform', + '-o-transform': 'transform' +}; + +Item.prototype.ontransitionend = function( event ) { + // disregard bubbled events from children + if ( event.target !== this.element ) { + return; + } + var _transition = this._transn; + // get property name of transitioned property, convert to prefix-free + var propertyName = dashedVendorProperties[ event.propertyName ] || event.propertyName; + + // remove property that has completed transitioning + delete _transition.ingProperties[ propertyName ]; + // check if any properties are still transitioning + if ( isEmptyObj( _transition.ingProperties ) ) { + // all properties have completed transitioning + this.disableTransition(); + } + // clean style + if ( propertyName in _transition.clean ) { + // clean up style + this.element.style[ event.propertyName ] = ''; + delete _transition.clean[ propertyName ]; + } + // trigger onTransitionEnd callback + if ( propertyName in _transition.onEnd ) { + var onTransitionEnd = _transition.onEnd[ propertyName ]; + onTransitionEnd.call( this ); + delete _transition.onEnd[ propertyName ]; + } + + this.emitEvent( 'transitionEnd', [ this ] ); +}; + +Item.prototype.disableTransition = function() { + this.removeTransitionStyles(); + this.element.removeEventListener( transitionEndEvent, this, false ); + this.isTransitioning = false; +}; + +/** + * removes style property from element + * @param {Object} style +**/ +Item.prototype._removeStyles = function( style ) { + // clean up transition styles + var cleanStyle = {}; + for ( var prop in style ) { + cleanStyle[ prop ] = ''; + } + this.css( cleanStyle ); +}; + +var cleanTransitionStyle = { + transitionProperty: '', + transitionDuration: '' +}; + +Item.prototype.removeTransitionStyles = function() { + // remove transition + this.css( cleanTransitionStyle ); +}; + +// ----- show/hide/remove ----- // + +// remove element from DOM +Item.prototype.removeElem = function() { + this.element.parentNode.removeChild( this.element ); + // remove display: none + this.css({ display: '' }); + this.emitEvent( 'remove', [ this ] ); +}; + +Item.prototype.remove = function() { + // just remove element if no transition support or no transition + if ( !transitionProperty || !parseFloat( this.layout.options.transitionDuration ) ) { + this.removeElem(); + return; + } + + // start transition + var _this = this; + this.once( 'transitionEnd', function() { + _this.removeElem(); + }); + this.hide(); +}; + +Item.prototype.reveal = function() { + delete this.isHidden; + // remove display: none + this.css({ display: '' }); + + var options = this.layout.options; + + var onTransitionEnd = {}; + var transitionEndProperty = this.getHideRevealTransitionEndProperty('visibleStyle'); + onTransitionEnd[ transitionEndProperty ] = this.onRevealTransitionEnd; + + this.transition({ + from: options.hiddenStyle, + to: options.visibleStyle, + isCleaning: true, + onTransitionEnd: onTransitionEnd + }); +}; + +Item.prototype.onRevealTransitionEnd = function() { + // check if still visible + // during transition, item may have been hidden + if ( !this.isHidden ) { + this.emitEvent('reveal'); + } +}; + +/** + * get style property use for hide/reveal transition end + * @param {String} styleProperty - hiddenStyle/visibleStyle + * @returns {String} + */ +Item.prototype.getHideRevealTransitionEndProperty = function( styleProperty ) { + var optionStyle = this.layout.options[ styleProperty ]; + // use opacity + if ( optionStyle.opacity ) { + return 'opacity'; + } + // get first property + for ( var prop in optionStyle ) { + return prop; + } +}; + +Item.prototype.hide = function() { + // set flag + this.isHidden = true; + // remove display: none + this.css({ display: '' }); + + var options = this.layout.options; + + var onTransitionEnd = {}; + var transitionEndProperty = this.getHideRevealTransitionEndProperty('hiddenStyle'); + onTransitionEnd[ transitionEndProperty ] = this.onHideTransitionEnd; + + this.transition({ + from: options.visibleStyle, + to: options.hiddenStyle, + // keep hidden stuff hidden + isCleaning: true, + onTransitionEnd: onTransitionEnd + }); +}; + +Item.prototype.onHideTransitionEnd = function() { + // check if still hidden + // during transition, item may have been un-hidden + if ( this.isHidden ) { + this.css({ display: 'none' }); + this.emitEvent('hide'); + } +}; + +Item.prototype.destroy = function() { + this.css({ + position: '', + left: '', + right: '', + top: '', + bottom: '', + transition: '', + transform: '' + }); +}; + +return Item; + +})); + +/*! + * Outlayer v1.4.2 + * the brains and guts of a layout library + * MIT license + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'outlayer/outlayer',[ + 'eventie/eventie', + 'eventEmitter/EventEmitter', + 'get-size/get-size', + 'fizzy-ui-utils/utils', + './item' + ], + function( eventie, EventEmitter, getSize, utils, Item ) { + return factory( window, eventie, EventEmitter, getSize, utils, Item); + } + ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + window, + require('eventie'), + require('wolfy87-eventemitter'), + require('get-size'), + require('fizzy-ui-utils'), + require('./item') + ); + } else { + // browser global + window.Outlayer = factory( + window, + window.eventie, + window.EventEmitter, + window.getSize, + window.fizzyUIUtils, + window.Outlayer.Item + ); + } + +}( window, function factory( window, eventie, EventEmitter, getSize, utils, Item ) { +'use strict'; + +// ----- vars ----- // + +var console = window.console; +var jQuery = window.jQuery; +var noop = function() {}; + +// -------------------------- Outlayer -------------------------- // + +// globally unique identifiers +var GUID = 0; +// internal store of all Outlayer intances +var instances = {}; + + +/** + * @param {Element, String} element + * @param {Object} options + * @constructor + */ +function Outlayer( element, options ) { + var queryElement = utils.getQueryElement( element ); + if ( !queryElement ) { + if ( console ) { + console.error( 'Bad element for ' + this.constructor.namespace + + ': ' + ( queryElement || element ) ); + } + return; + } + this.element = queryElement; + // add jQuery + if ( jQuery ) { + this.$element = jQuery( this.element ); + } + + // options + this.options = utils.extend( {}, this.constructor.defaults ); + this.option( options ); + + // add id for Outlayer.getFromElement + var id = ++GUID; + this.element.outlayerGUID = id; // expando + instances[ id ] = this; // associate via id + + // kick it off + this._create(); + + if ( this.options.isInitLayout ) { + this.layout(); + } +} + +// settings are for internal use only +Outlayer.namespace = 'outlayer'; +Outlayer.Item = Item; + +// default options +Outlayer.defaults = { + containerStyle: { + position: 'relative' + }, + isInitLayout: true, + isOriginLeft: true, + isOriginTop: true, + isResizeBound: true, + isResizingContainer: true, + // item options + transitionDuration: '0.4s', + hiddenStyle: { + opacity: 0, + transform: 'scale(0.001)' + }, + visibleStyle: { + opacity: 1, + transform: 'scale(1)' + } +}; + +// inherit EventEmitter +utils.extend( Outlayer.prototype, EventEmitter.prototype ); + +/** + * set options + * @param {Object} opts + */ +Outlayer.prototype.option = function( opts ) { + utils.extend( this.options, opts ); +}; + +Outlayer.prototype._create = function() { + // get items from children + this.reloadItems(); + // elements that affect layout, but are not laid out + this.stamps = []; + this.stamp( this.options.stamp ); + // set container style + utils.extend( this.element.style, this.options.containerStyle ); + + // bind resize method + if ( this.options.isResizeBound ) { + this.bindResize(); + } +}; + +// goes through all children again and gets bricks in proper order +Outlayer.prototype.reloadItems = function() { + // collection of item elements + this.items = this._itemize( this.element.children ); +}; + + +/** + * turn elements into Outlayer.Items to be used in layout + * @param {Array or NodeList or HTMLElement} elems + * @returns {Array} items - collection of new Outlayer Items + */ +Outlayer.prototype._itemize = function( elems ) { + + var itemElems = this._filterFindItemElements( elems ); + var Item = this.constructor.Item; + + // create new Outlayer Items for collection + var items = []; + for ( var i=0, len = itemElems.length; i < len; i++ ) { + var elem = itemElems[i]; + var item = new Item( elem, this ); + items.push( item ); + } + + return items; +}; + +/** + * get item elements to be used in layout + * @param {Array or NodeList or HTMLElement} elems + * @returns {Array} items - item elements + */ +Outlayer.prototype._filterFindItemElements = function( elems ) { + return utils.filterFindElements( elems, this.options.itemSelector ); +}; + +/** + * getter method for getting item elements + * @returns {Array} elems - collection of item elements + */ +Outlayer.prototype.getItemElements = function() { + var elems = []; + for ( var i=0, len = this.items.length; i < len; i++ ) { + elems.push( this.items[i].element ); + } + return elems; +}; + +// ----- init & layout ----- // + +/** + * lays out all items + */ +Outlayer.prototype.layout = function() { + this._resetLayout(); + this._manageStamps(); + + // don't animate first layout + var isInstant = this.options.isLayoutInstant !== undefined ? + this.options.isLayoutInstant : !this._isLayoutInited; + this.layoutItems( this.items, isInstant ); + + // flag for initalized + this._isLayoutInited = true; +}; + +// _init is alias for layout +Outlayer.prototype._init = Outlayer.prototype.layout; + +/** + * logic before any new layout + */ +Outlayer.prototype._resetLayout = function() { + this.getSize(); +}; + + +Outlayer.prototype.getSize = function() { + this.size = getSize( this.element ); +}; + +/** + * get measurement from option, for columnWidth, rowHeight, gutter + * if option is String -> get element from selector string, & get size of element + * if option is Element -> get size of element + * else use option as a number + * + * @param {String} measurement + * @param {String} size - width or height + * @private + */ +Outlayer.prototype._getMeasurement = function( measurement, size ) { + var option = this.options[ measurement ]; + var elem; + if ( !option ) { + // default to 0 + this[ measurement ] = 0; + } else { + // use option as an element + if ( typeof option === 'string' ) { + elem = this.element.querySelector( option ); + } else if ( utils.isElement( option ) ) { + elem = option; + } + // use size of element, if element + this[ measurement ] = elem ? getSize( elem )[ size ] : option; + } +}; + +/** + * layout a collection of item elements + * @api public + */ +Outlayer.prototype.layoutItems = function( items, isInstant ) { + items = this._getItemsForLayout( items ); + + this._layoutItems( items, isInstant ); + + this._postLayout(); +}; + +/** + * get the items to be laid out + * you may want to skip over some items + * @param {Array} items + * @returns {Array} items + */ +Outlayer.prototype._getItemsForLayout = function( items ) { + var layoutItems = []; + for ( var i=0, len = items.length; i < len; i++ ) { + var item = items[i]; + if ( !item.isIgnored ) { + layoutItems.push( item ); + } + } + return layoutItems; +}; + +/** + * layout items + * @param {Array} items + * @param {Boolean} isInstant + */ +Outlayer.prototype._layoutItems = function( items, isInstant ) { + this._emitCompleteOnItems( 'layout', items ); + + if ( !items || !items.length ) { + // no items, emit event with empty array + return; + } + + var queue = []; + + for ( var i=0, len = items.length; i < len; i++ ) { + var item = items[i]; + // get x/y object from method + var position = this._getItemLayoutPosition( item ); + // enqueue + position.item = item; + position.isInstant = isInstant || item.isLayoutInstant; + queue.push( position ); + } + + this._processLayoutQueue( queue ); +}; + +/** + * get item layout position + * @param {Outlayer.Item} item + * @returns {Object} x and y position + */ +Outlayer.prototype._getItemLayoutPosition = function( /* item */ ) { + return { + x: 0, + y: 0 + }; +}; + +/** + * iterate over array and position each item + * Reason being - separating this logic prevents 'layout invalidation' + * thx @paul_irish + * @param {Array} queue + */ +Outlayer.prototype._processLayoutQueue = function( queue ) { + for ( var i=0, len = queue.length; i < len; i++ ) { + var obj = queue[i]; + this._positionItem( obj.item, obj.x, obj.y, obj.isInstant ); + } +}; + +/** + * Sets position of item in DOM + * @param {Outlayer.Item} item + * @param {Number} x - horizontal position + * @param {Number} y - vertical position + * @param {Boolean} isInstant - disables transitions + */ +Outlayer.prototype._positionItem = function( item, x, y, isInstant ) { + if ( isInstant ) { + // if not transition, just set CSS + item.goTo( x, y ); + } else { + item.moveTo( x, y ); + } +}; + +/** + * Any logic you want to do after each layout, + * i.e. size the container + */ +Outlayer.prototype._postLayout = function() { + this.resizeContainer(); +}; + +Outlayer.prototype.resizeContainer = function() { + if ( !this.options.isResizingContainer ) { + return; + } + var size = this._getContainerSize(); + if ( size ) { + this._setContainerMeasure( size.width, true ); + this._setContainerMeasure( size.height, false ); + } +}; + +/** + * Sets width or height of container if returned + * @returns {Object} size + * @param {Number} width + * @param {Number} height + */ +Outlayer.prototype._getContainerSize = noop; + +/** + * @param {Number} measure - size of width or height + * @param {Boolean} isWidth + */ +Outlayer.prototype._setContainerMeasure = function( measure, isWidth ) { + if ( measure === undefined ) { + return; + } + + var elemSize = this.size; + // add padding and border width if border box + if ( elemSize.isBorderBox ) { + measure += isWidth ? elemSize.paddingLeft + elemSize.paddingRight + + elemSize.borderLeftWidth + elemSize.borderRightWidth : + elemSize.paddingBottom + elemSize.paddingTop + + elemSize.borderTopWidth + elemSize.borderBottomWidth; + } + + measure = Math.max( measure, 0 ); + this.element.style[ isWidth ? 'width' : 'height' ] = measure + 'px'; +}; + +/** + * emit eventComplete on a collection of items events + * @param {String} eventName + * @param {Array} items - Outlayer.Items + */ +Outlayer.prototype._emitCompleteOnItems = function( eventName, items ) { + var _this = this; + function onComplete() { + _this.dispatchEvent( eventName + 'Complete', null, [ items ] ); + } + + var count = items.length; + if ( !items || !count ) { + onComplete(); + return; + } + + var doneCount = 0; + function tick() { + doneCount++; + if ( doneCount === count ) { + onComplete(); + } + } + + // bind callback + for ( var i=0, len = items.length; i < len; i++ ) { + var item = items[i]; + item.once( eventName, tick ); + } +}; + +/** + * emits events via eventEmitter and jQuery events + * @param {String} type - name of event + * @param {Event} event - original event + * @param {Array} args - extra arguments + */ +Outlayer.prototype.dispatchEvent = function( type, event, args ) { + // add original event to arguments + var emitArgs = event ? [ event ].concat( args ) : args; + this.emitEvent( type, emitArgs ); + + if ( jQuery ) { + // set this.$element + this.$element = this.$element || jQuery( this.element ); + if ( event ) { + // create jQuery event + var $event = jQuery.Event( event ); + $event.type = type; + this.$element.trigger( $event, args ); + } else { + // just trigger with type if no event available + this.$element.trigger( type, args ); + } + } +}; + +// -------------------------- ignore & stamps -------------------------- // + + +/** + * keep item in collection, but do not lay it out + * ignored items do not get skipped in layout + * @param {Element} elem + */ +Outlayer.prototype.ignore = function( elem ) { + var item = this.getItem( elem ); + if ( item ) { + item.isIgnored = true; + } +}; + +/** + * return item to layout collection + * @param {Element} elem + */ +Outlayer.prototype.unignore = function( elem ) { + var item = this.getItem( elem ); + if ( item ) { + delete item.isIgnored; + } +}; + +/** + * adds elements to stamps + * @param {NodeList, Array, Element, or String} elems + */ +Outlayer.prototype.stamp = function( elems ) { + elems = this._find( elems ); + if ( !elems ) { + return; + } + + this.stamps = this.stamps.concat( elems ); + // ignore + for ( var i=0, len = elems.length; i < len; i++ ) { + var elem = elems[i]; + this.ignore( elem ); + } +}; + +/** + * removes elements to stamps + * @param {NodeList, Array, or Element} elems + */ +Outlayer.prototype.unstamp = function( elems ) { + elems = this._find( elems ); + if ( !elems ){ + return; + } + + for ( var i=0, len = elems.length; i < len; i++ ) { + var elem = elems[i]; + // filter out removed stamp elements + utils.removeFrom( this.stamps, elem ); + this.unignore( elem ); + } + +}; + +/** + * finds child elements + * @param {NodeList, Array, Element, or String} elems + * @returns {Array} elems + */ +Outlayer.prototype._find = function( elems ) { + if ( !elems ) { + return; + } + // if string, use argument as selector string + if ( typeof elems === 'string' ) { + elems = this.element.querySelectorAll( elems ); + } + elems = utils.makeArray( elems ); + return elems; +}; + +Outlayer.prototype._manageStamps = function() { + if ( !this.stamps || !this.stamps.length ) { + return; + } + + this._getBoundingRect(); + + for ( var i=0, len = this.stamps.length; i < len; i++ ) { + var stamp = this.stamps[i]; + this._manageStamp( stamp ); + } +}; + +// update boundingLeft / Top +Outlayer.prototype._getBoundingRect = function() { + // get bounding rect for container element + var boundingRect = this.element.getBoundingClientRect(); + var size = this.size; + this._boundingRect = { + left: boundingRect.left + size.paddingLeft + size.borderLeftWidth, + top: boundingRect.top + size.paddingTop + size.borderTopWidth, + right: boundingRect.right - ( size.paddingRight + size.borderRightWidth ), + bottom: boundingRect.bottom - ( size.paddingBottom + size.borderBottomWidth ) + }; +}; + +/** + * @param {Element} stamp +**/ +Outlayer.prototype._manageStamp = noop; + +/** + * get x/y position of element relative to container element + * @param {Element} elem + * @returns {Object} offset - has left, top, right, bottom + */ +Outlayer.prototype._getElementOffset = function( elem ) { + var boundingRect = elem.getBoundingClientRect(); + var thisRect = this._boundingRect; + var size = getSize( elem ); + var offset = { + left: boundingRect.left - thisRect.left - size.marginLeft, + top: boundingRect.top - thisRect.top - size.marginTop, + right: thisRect.right - boundingRect.right - size.marginRight, + bottom: thisRect.bottom - boundingRect.bottom - size.marginBottom + }; + return offset; +}; + +// -------------------------- resize -------------------------- // + +// enable event handlers for listeners +// i.e. resize -> onresize +Outlayer.prototype.handleEvent = function( event ) { + var method = 'on' + event.type; + if ( this[ method ] ) { + this[ method ]( event ); + } +}; + +/** + * Bind layout to window resizing + */ +Outlayer.prototype.bindResize = function() { + // bind just one listener + if ( this.isResizeBound ) { + return; + } + eventie.bind( window, 'resize', this ); + this.isResizeBound = true; +}; + +/** + * Unbind layout to window resizing + */ +Outlayer.prototype.unbindResize = function() { + if ( this.isResizeBound ) { + eventie.unbind( window, 'resize', this ); + } + this.isResizeBound = false; +}; + +// original debounce by John Hann +// http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/ + +// this fires every resize +Outlayer.prototype.onresize = function() { + if ( this.resizeTimeout ) { + clearTimeout( this.resizeTimeout ); + } + + var _this = this; + function delayed() { + _this.resize(); + delete _this.resizeTimeout; + } + + this.resizeTimeout = setTimeout( delayed, 100 ); +}; + +// debounced, layout on resize +Outlayer.prototype.resize = function() { + // don't trigger if size did not change + // or if resize was unbound. See #9 + if ( !this.isResizeBound || !this.needsResizeLayout() ) { + return; + } + + this.layout(); +}; + +/** + * check if layout is needed post layout + * @returns Boolean + */ +Outlayer.prototype.needsResizeLayout = function() { + var size = getSize( this.element ); + // check that this.size and size are there + // IE8 triggers resize on body size change, so they might not be + var hasSizes = this.size && size; + return hasSizes && size.innerWidth !== this.size.innerWidth; +}; + +// -------------------------- methods -------------------------- // + +/** + * add items to Outlayer instance + * @param {Array or NodeList or Element} elems + * @returns {Array} items - Outlayer.Items +**/ +Outlayer.prototype.addItems = function( elems ) { + var items = this._itemize( elems ); + // add items to collection + if ( items.length ) { + this.items = this.items.concat( items ); + } + return items; +}; + +/** + * Layout newly-appended item elements + * @param {Array or NodeList or Element} elems + */ +Outlayer.prototype.appended = function( elems ) { + var items = this.addItems( elems ); + if ( !items.length ) { + return; + } + // layout and reveal just the new items + this.layoutItems( items, true ); + this.reveal( items ); +}; + +/** + * Layout prepended elements + * @param {Array or NodeList or Element} elems + */ +Outlayer.prototype.prepended = function( elems ) { + var items = this._itemize( elems ); + if ( !items.length ) { + return; + } + // add items to beginning of collection + var previousItems = this.items.slice(0); + this.items = items.concat( previousItems ); + // start new layout + this._resetLayout(); + this._manageStamps(); + // layout new stuff without transition + this.layoutItems( items, true ); + this.reveal( items ); + // layout previous items + this.layoutItems( previousItems ); +}; + +/** + * reveal a collection of items + * @param {Array of Outlayer.Items} items + */ +Outlayer.prototype.reveal = function( items ) { + this._emitCompleteOnItems( 'reveal', items ); + + var len = items && items.length; + for ( var i=0; len && i < len; i++ ) { + var item = items[i]; + item.reveal(); + } +}; + +/** + * hide a collection of items + * @param {Array of Outlayer.Items} items + */ +Outlayer.prototype.hide = function( items ) { + this._emitCompleteOnItems( 'hide', items ); + + var len = items && items.length; + for ( var i=0; len && i < len; i++ ) { + var item = items[i]; + item.hide(); + } +}; + +/** + * reveal item elements + * @param {Array}, {Element}, {NodeList} items + */ +Outlayer.prototype.revealItemElements = function( elems ) { + var items = this.getItems( elems ); + this.reveal( items ); +}; + +/** + * hide item elements + * @param {Array}, {Element}, {NodeList} items + */ +Outlayer.prototype.hideItemElements = function( elems ) { + var items = this.getItems( elems ); + this.hide( items ); +}; + +/** + * get Outlayer.Item, given an Element + * @param {Element} elem + * @param {Function} callback + * @returns {Outlayer.Item} item + */ +Outlayer.prototype.getItem = function( elem ) { + // loop through items to get the one that matches + for ( var i=0, len = this.items.length; i < len; i++ ) { + var item = this.items[i]; + if ( item.element === elem ) { + // return item + return item; + } + } +}; + +/** + * get collection of Outlayer.Items, given Elements + * @param {Array} elems + * @returns {Array} items - Outlayer.Items + */ +Outlayer.prototype.getItems = function( elems ) { + elems = utils.makeArray( elems ); + var items = []; + for ( var i=0, len = elems.length; i < len; i++ ) { + var elem = elems[i]; + var item = this.getItem( elem ); + if ( item ) { + items.push( item ); + } + } + + return items; +}; + +/** + * remove element(s) from instance and DOM + * @param {Array or NodeList or Element} elems + */ +Outlayer.prototype.remove = function( elems ) { + var removeItems = this.getItems( elems ); + + this._emitCompleteOnItems( 'remove', removeItems ); + + // bail if no items to remove + if ( !removeItems || !removeItems.length ) { + return; + } + + for ( var i=0, len = removeItems.length; i < len; i++ ) { + var item = removeItems[i]; + item.remove(); + // remove item from collection + utils.removeFrom( this.items, item ); + } +}; + +// ----- destroy ----- // + +// remove and disable Outlayer instance +Outlayer.prototype.destroy = function() { + // clean up dynamic styles + var style = this.element.style; + style.height = ''; + style.position = ''; + style.width = ''; + // destroy items + for ( var i=0, len = this.items.length; i < len; i++ ) { + var item = this.items[i]; + item.destroy(); + } + + this.unbindResize(); + + var id = this.element.outlayerGUID; + delete instances[ id ]; // remove reference to instance by id + delete this.element.outlayerGUID; + // remove data for jQuery + if ( jQuery ) { + jQuery.removeData( this.element, this.constructor.namespace ); + } + +}; + +// -------------------------- data -------------------------- // + +/** + * get Outlayer instance from element + * @param {Element} elem + * @returns {Outlayer} + */ +Outlayer.data = function( elem ) { + elem = utils.getQueryElement( elem ); + var id = elem && elem.outlayerGUID; + return id && instances[ id ]; +}; + + +// -------------------------- create Outlayer class -------------------------- // + +/** + * create a layout class + * @param {String} namespace + */ +Outlayer.create = function( namespace, options ) { + // sub-class Outlayer + function Layout() { + Outlayer.apply( this, arguments ); + } + // inherit Outlayer prototype, use Object.create if there + if ( Object.create ) { + Layout.prototype = Object.create( Outlayer.prototype ); + } else { + utils.extend( Layout.prototype, Outlayer.prototype ); + } + // set contructor, used for namespace and Item + Layout.prototype.constructor = Layout; + + Layout.defaults = utils.extend( {}, Outlayer.defaults ); + // apply new options + utils.extend( Layout.defaults, options ); + // keep prototype.settings for backwards compatibility (Packery v1.2.0) + Layout.prototype.settings = {}; + + Layout.namespace = namespace; + + Layout.data = Outlayer.data; + + // sub-class Item + Layout.Item = function LayoutItem() { + Item.apply( this, arguments ); + }; + + Layout.Item.prototype = new Item(); + + // -------------------------- declarative -------------------------- // + + utils.htmlInit( Layout, namespace ); + + // -------------------------- jQuery bridge -------------------------- // + + // make into jQuery plugin + if ( jQuery && jQuery.bridget ) { + jQuery.bridget( namespace, Layout ); + } + + return Layout; +}; + +// ----- fin ----- // + +// back in global +Outlayer.Item = Item; + +return Outlayer; + +})); + + +/** + * Isotope Item +**/ + +( function( window, factory ) { +'use strict'; + // universal module definition + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'isotope/js/item',[ + 'outlayer/outlayer' + ], + factory ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + require('outlayer') + ); + } else { + // browser global + window.Isotope = window.Isotope || {}; + window.Isotope.Item = factory( + window.Outlayer + ); + } + +}( window, function factory( Outlayer ) { +'use strict'; + +// -------------------------- Item -------------------------- // + +// sub-class Outlayer Item +function Item() { + Outlayer.Item.apply( this, arguments ); +} + +Item.prototype = new Outlayer.Item(); + +Item.prototype._create = function() { + // assign id, used for original-order sorting + this.id = this.layout.itemGUID++; + Outlayer.Item.prototype._create.call( this ); + this.sortData = {}; +}; + +Item.prototype.updateSortData = function() { + if ( this.isIgnored ) { + return; + } + // default sorters + this.sortData.id = this.id; + // for backward compatibility + this.sortData['original-order'] = this.id; + this.sortData.random = Math.random(); + // go thru getSortData obj and apply the sorters + var getSortData = this.layout.options.getSortData; + var sorters = this.layout._sorters; + for ( var key in getSortData ) { + var sorter = sorters[ key ]; + this.sortData[ key ] = sorter( this.element, this ); + } +}; + +var _destroy = Item.prototype.destroy; +Item.prototype.destroy = function() { + // call super + _destroy.apply( this, arguments ); + // reset display, #741 + this.css({ + display: '' + }); +}; + +return Item; + +})); + +/** + * Isotope LayoutMode + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'isotope/js/layout-mode',[ + 'get-size/get-size', + 'outlayer/outlayer' + ], + factory ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + require('get-size'), + require('outlayer') + ); + } else { + // browser global + window.Isotope = window.Isotope || {}; + window.Isotope.LayoutMode = factory( + window.getSize, + window.Outlayer + ); + } + +}( window, function factory( getSize, Outlayer ) { + 'use strict'; + + // layout mode class + function LayoutMode( isotope ) { + this.isotope = isotope; + // link properties + if ( isotope ) { + this.options = isotope.options[ this.namespace ]; + this.element = isotope.element; + this.items = isotope.filteredItems; + this.size = isotope.size; + } + } + + /** + * some methods should just defer to default Outlayer method + * and reference the Isotope instance as `this` + **/ + ( function() { + var facadeMethods = [ + '_resetLayout', + '_getItemLayoutPosition', + '_manageStamp', + '_getContainerSize', + '_getElementOffset', + 'needsResizeLayout' + ]; + + for ( var i=0, len = facadeMethods.length; i < len; i++ ) { + var methodName = facadeMethods[i]; + LayoutMode.prototype[ methodName ] = getOutlayerMethod( methodName ); + } + + function getOutlayerMethod( methodName ) { + return function() { + return Outlayer.prototype[ methodName ].apply( this.isotope, arguments ); + }; + } + })(); + + // ----- ----- // + + // for horizontal layout modes, check vertical size + LayoutMode.prototype.needsVerticalResizeLayout = function() { + // don't trigger if size did not change + var size = getSize( this.isotope.element ); + // check that this.size and size are there + // IE8 triggers resize on body size change, so they might not be + var hasSizes = this.isotope.size && size; + return hasSizes && size.innerHeight != this.isotope.size.innerHeight; + }; + + // ----- measurements ----- // + + LayoutMode.prototype._getMeasurement = function() { + this.isotope._getMeasurement.apply( this, arguments ); + }; + + LayoutMode.prototype.getColumnWidth = function() { + this.getSegmentSize( 'column', 'Width' ); + }; + + LayoutMode.prototype.getRowHeight = function() { + this.getSegmentSize( 'row', 'Height' ); + }; + + /** + * get columnWidth or rowHeight + * segment: 'column' or 'row' + * size 'Width' or 'Height' + **/ + LayoutMode.prototype.getSegmentSize = function( segment, size ) { + var segmentName = segment + size; + var outerSize = 'outer' + size; + // columnWidth / outerWidth // rowHeight / outerHeight + this._getMeasurement( segmentName, outerSize ); + // got rowHeight or columnWidth, we can chill + if ( this[ segmentName ] ) { + return; + } + // fall back to item of first element + var firstItemSize = this.getFirstItemSize(); + this[ segmentName ] = firstItemSize && firstItemSize[ outerSize ] || + // or size of container + this.isotope.size[ 'inner' + size ]; + }; + + LayoutMode.prototype.getFirstItemSize = function() { + var firstItem = this.isotope.filteredItems[0]; + return firstItem && firstItem.element && getSize( firstItem.element ); + }; + + // ----- methods that should reference isotope ----- // + + LayoutMode.prototype.layout = function() { + this.isotope.layout.apply( this.isotope, arguments ); + }; + + LayoutMode.prototype.getSize = function() { + this.isotope.getSize(); + this.size = this.isotope.size; + }; + + // -------------------------- create -------------------------- // + + LayoutMode.modes = {}; + + LayoutMode.create = function( namespace, options ) { + + function Mode() { + LayoutMode.apply( this, arguments ); + } + + Mode.prototype = new LayoutMode(); + + // default options + if ( options ) { + Mode.options = options; + } + + Mode.prototype.namespace = namespace; + // register in Isotope + LayoutMode.modes[ namespace ] = Mode; + + return Mode; + }; + + return LayoutMode; + +})); + +/*! + * Masonry v3.3.1 + * Cascading grid layout library + * http://masonry.desandro.com + * MIT License + * by David DeSandro + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + if ( typeof define === 'function' && define.amd ) { + // AMD + define( 'masonry/masonry',[ + 'outlayer/outlayer', + 'get-size/get-size', + 'fizzy-ui-utils/utils' + ], + factory ); + } else if ( typeof exports === 'object' ) { + // CommonJS + module.exports = factory( + require('outlayer'), + require('get-size'), + require('fizzy-ui-utils') + ); + } else { + // browser global + window.Masonry = factory( + window.Outlayer, + window.getSize, + window.fizzyUIUtils + ); + } + +}( window, function factory( Outlayer, getSize, utils ) { + + + +// -------------------------- masonryDefinition -------------------------- // + + // create an Outlayer layout class + var Masonry = Outlayer.create('masonry'); + + Masonry.prototype._resetLayout = function() { + this.getSize(); + this._getMeasurement( 'columnWidth', 'outerWidth' ); + this._getMeasurement( 'gutter', 'outerWidth' ); + this.measureColumns(); + + // reset column Y + var i = this.cols; + this.colYs = []; + while (i--) { + this.colYs.push( 0 ); + } + + this.maxY = 0; + }; + + Masonry.prototype.measureColumns = function() { + this.getContainerWidth(); + // if columnWidth is 0, default to outerWidth of first item + if ( !this.columnWidth ) { + var firstItem = this.items[0]; + var firstItemElem = firstItem && firstItem.element; + // columnWidth fall back to item of first element + this.columnWidth = firstItemElem && getSize( firstItemElem ).outerWidth || + // if first elem has no width, default to size of container + this.containerWidth; + } + + var columnWidth = this.columnWidth += this.gutter; + + // calculate columns + var containerWidth = this.containerWidth + this.gutter; + var cols = containerWidth / columnWidth; + // fix rounding errors, typically with gutters + var excess = columnWidth - containerWidth % columnWidth; + // if overshoot is less than a pixel, round up, otherwise floor it + var mathMethod = excess && excess < 1 ? 'round' : 'floor'; + cols = Math[ mathMethod ]( cols ); + this.cols = Math.max( cols, 1 ); + }; + + Masonry.prototype.getContainerWidth = function() { + // container is parent if fit width + var container = this.options.isFitWidth ? this.element.parentNode : this.element; + // check that this.size and size are there + // IE8 triggers resize on body size change, so they might not be + var size = getSize( container ); + this.containerWidth = size && size.innerWidth; + }; + + Masonry.prototype._getItemLayoutPosition = function( item ) { + item.getSize(); + // how many columns does this brick span + var remainder = item.size.outerWidth % this.columnWidth; + var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil'; + // round if off by 1 pixel, otherwise use ceil + var colSpan = Math[ mathMethod ]( item.size.outerWidth / this.columnWidth ); + colSpan = Math.min( colSpan, this.cols ); + + var colGroup = this._getColGroup( colSpan ); + // get the minimum Y value from the columns + var minimumY = Math.min.apply( Math, colGroup ); + var shortColIndex = utils.indexOf( colGroup, minimumY ); + + // position the brick + var position = { + x: this.columnWidth * shortColIndex, + y: minimumY + }; + + // apply setHeight to necessary columns + var setHeight = minimumY + item.size.outerHeight; + var setSpan = this.cols + 1 - colGroup.length; + for ( var i = 0; i < setSpan; i++ ) { + this.colYs[ shortColIndex + i ] = setHeight; + } + + return position; + }; + + /** + * @param {Number} colSpan - number of columns the element spans + * @returns {Array} colGroup + */ + Masonry.prototype._getColGroup = function( colSpan ) { + if ( colSpan < 2 ) { + // if brick spans only one column, use all the column Ys + return this.colYs; + } + + var colGroup = []; + // how many different places could this brick fit horizontally + var groupCount = this.cols + 1 - colSpan; + // for each group potential horizontal position + for ( var i = 0; i < groupCount; i++ ) { + // make an array of colY values for that one group + var groupColYs = this.colYs.slice( i, i + colSpan ); + // and get the max value of the array + colGroup[i] = Math.max.apply( Math, groupColYs ); + } + return colGroup; + }; + + Masonry.prototype._manageStamp = function( stamp ) { + var stampSize = getSize( stamp ); + var offset = this._getElementOffset( stamp ); + // get the columns that this stamp affects + var firstX = this.options.isOriginLeft ? offset.left : offset.right; + var lastX = firstX + stampSize.outerWidth; + var firstCol = Math.floor( firstX / this.columnWidth ); + firstCol = Math.max( 0, firstCol ); + var lastCol = Math.floor( lastX / this.columnWidth ); + // lastCol should not go over if multiple of columnWidth #425 + lastCol -= lastX % this.columnWidth ? 0 : 1; + lastCol = Math.min( this.cols - 1, lastCol ); + // set colYs to bottom of the stamp + var stampMaxY = ( this.options.isOriginTop ? offset.top : offset.bottom ) + + stampSize.outerHeight; + for ( var i = firstCol; i <= lastCol; i++ ) { + this.colYs[i] = Math.max( stampMaxY, this.colYs[i] ); + } + }; + + Masonry.prototype._getContainerSize = function() { + this.maxY = Math.max.apply( Math, this.colYs ); + var size = { + height: this.maxY + }; + + if ( this.options.isFitWidth ) { + size.width = this._getContainerFitWidth(); + } + + return size; + }; + + Masonry.prototype._getContainerFitWidth = function() { + var unusedCols = 0; + // count unused columns + var i = this.cols; + while ( --i ) { + if ( this.colYs[i] !== 0 ) { + break; + } + unusedCols++; + } + // fit container to columns that have been used + return ( this.cols - unusedCols ) * this.columnWidth - this.gutter; + }; + + Masonry.prototype.needsResizeLayout = function() { + var previousWidth = this.containerWidth; + this.getContainerWidth(); + return previousWidth !== this.containerWidth; + }; + + return Masonry; + +})); + +/*! + * Masonry layout mode + * sub-classes Masonry + * http://masonry.desandro.com + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'isotope/js/layout-modes/masonry',[ + '../layout-mode', + 'masonry/masonry' + ], + factory ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + require('../layout-mode'), + require('masonry-layout') + ); + } else { + // browser global + factory( + window.Isotope.LayoutMode, + window.Masonry + ); + } + +}( window, function factory( LayoutMode, Masonry ) { +'use strict'; + +// -------------------------- helpers -------------------------- // + +// extend objects +function extend( a, b ) { + for ( var prop in b ) { + a[ prop ] = b[ prop ]; + } + return a; +} + +// -------------------------- masonryDefinition -------------------------- // + + // create an Outlayer layout class + var MasonryMode = LayoutMode.create('masonry'); + + // save on to these methods + var _getElementOffset = MasonryMode.prototype._getElementOffset; + var layout = MasonryMode.prototype.layout; + var _getMeasurement = MasonryMode.prototype._getMeasurement; + + // sub-class Masonry + extend( MasonryMode.prototype, Masonry.prototype ); + + // set back, as it was overwritten by Masonry + MasonryMode.prototype._getElementOffset = _getElementOffset; + MasonryMode.prototype.layout = layout; + MasonryMode.prototype._getMeasurement = _getMeasurement; + + var measureColumns = MasonryMode.prototype.measureColumns; + MasonryMode.prototype.measureColumns = function() { + // set items, used if measuring first item + this.items = this.isotope.filteredItems; + measureColumns.call( this ); + }; + + // HACK copy over isOriginLeft/Top options + var _manageStamp = MasonryMode.prototype._manageStamp; + MasonryMode.prototype._manageStamp = function() { + this.options.isOriginLeft = this.isotope.options.isOriginLeft; + this.options.isOriginTop = this.isotope.options.isOriginTop; + _manageStamp.apply( this, arguments ); + }; + + return MasonryMode; + +})); + +/** + * fitRows layout mode + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'isotope/js/layout-modes/fit-rows',[ + '../layout-mode' + ], + factory ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + require('../layout-mode') + ); + } else { + // browser global + factory( + window.Isotope.LayoutMode + ); + } + +}( window, function factory( LayoutMode ) { +'use strict'; + +var FitRows = LayoutMode.create('fitRows'); + +FitRows.prototype._resetLayout = function() { + this.x = 0; + this.y = 0; + this.maxY = 0; + this._getMeasurement( 'gutter', 'outerWidth' ); +}; + +FitRows.prototype._getItemLayoutPosition = function( item ) { + item.getSize(); + + var itemWidth = item.size.outerWidth + this.gutter; + // if this element cannot fit in the current row + var containerWidth = this.isotope.size.innerWidth + this.gutter; + if ( this.x !== 0 && itemWidth + this.x > containerWidth ) { + this.x = 0; + this.y = this.maxY; + } + + var position = { + x: this.x, + y: this.y + }; + + this.maxY = Math.max( this.maxY, this.y + item.size.outerHeight ); + this.x += itemWidth; + + return position; +}; + +FitRows.prototype._getContainerSize = function() { + return { height: this.maxY }; +}; + +return FitRows; + +})); + +/** + * vertical layout mode + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + if ( typeof define == 'function' && define.amd ) { + // AMD + define( 'isotope/js/layout-modes/vertical',[ + '../layout-mode' + ], + factory ); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + require('../layout-mode') + ); + } else { + // browser global + factory( + window.Isotope.LayoutMode + ); + } + +}( window, function factory( LayoutMode ) { +'use strict'; + +var Vertical = LayoutMode.create( 'vertical', { + horizontalAlignment: 0 +}); + +Vertical.prototype._resetLayout = function() { + this.y = 0; +}; + +Vertical.prototype._getItemLayoutPosition = function( item ) { + item.getSize(); + var x = ( this.isotope.size.innerWidth - item.size.outerWidth ) * + this.options.horizontalAlignment; + var y = this.y; + this.y += item.size.outerHeight; + return { x: x, y: y }; +}; + +Vertical.prototype._getContainerSize = function() { + return { height: this.y }; +}; + +return Vertical; + +})); + +/*! + * Isotope v2.2.2 + * + * Licensed GPLv3 for open source use + * or Isotope Commercial License for commercial use + * + * http://isotope.metafizzy.co + * Copyright 2015 Metafizzy + */ + +( function( window, factory ) { + 'use strict'; + // universal module definition + + if ( typeof define == 'function' && define.amd ) { + // AMD + define( [ + 'outlayer/outlayer', + 'get-size/get-size', + 'matches-selector/matches-selector', + 'fizzy-ui-utils/utils', + 'isotope/js/item', + 'isotope/js/layout-mode', + // include default layout modes + 'isotope/js/layout-modes/masonry', + 'isotope/js/layout-modes/fit-rows', + 'isotope/js/layout-modes/vertical' + ], + function( Outlayer, getSize, matchesSelector, utils, Item, LayoutMode ) { + return factory( window, Outlayer, getSize, matchesSelector, utils, Item, LayoutMode ); + }); + } else if ( typeof exports == 'object' ) { + // CommonJS + module.exports = factory( + window, + require('outlayer'), + require('get-size'), + require('desandro-matches-selector'), + require('fizzy-ui-utils'), + require('./item'), + require('./layout-mode'), + // include default layout modes + require('./layout-modes/masonry'), + require('./layout-modes/fit-rows'), + require('./layout-modes/vertical') + ); + } else { + // browser global + window.Isotope = factory( + window, + window.Outlayer, + window.getSize, + window.matchesSelector, + window.fizzyUIUtils, + window.Isotope.Item, + window.Isotope.LayoutMode + ); + } + +}( window, function factory( window, Outlayer, getSize, matchesSelector, utils, + Item, LayoutMode ) { + + + +// -------------------------- vars -------------------------- // + +var jQuery = window.jQuery; + +// -------------------------- helpers -------------------------- // + +var trim = String.prototype.trim ? + function( str ) { + return str.trim(); + } : + function( str ) { + return str.replace( /^\s+|\s+$/g, '' ); + }; + +var docElem = document.documentElement; + +var getText = docElem.textContent ? + function( elem ) { + return elem.textContent; + } : + function( elem ) { + return elem.innerText; + }; + +// -------------------------- isotopeDefinition -------------------------- // + + // create an Outlayer layout class + var Isotope = Outlayer.create( 'isotope', { + layoutMode: "masonry", + isJQueryFiltering: true, + sortAscending: true + }); + + Isotope.Item = Item; + Isotope.LayoutMode = LayoutMode; + + Isotope.prototype._create = function() { + this.itemGUID = 0; + // functions that sort items + this._sorters = {}; + this._getSorters(); + // call super + Outlayer.prototype._create.call( this ); + + // create layout modes + this.modes = {}; + // start filteredItems with all items + this.filteredItems = this.items; + // keep of track of sortBys + this.sortHistory = [ 'original-order' ]; + // create from registered layout modes + for ( var name in LayoutMode.modes ) { + this._initLayoutMode( name ); + } + }; + + Isotope.prototype.reloadItems = function() { + // reset item ID counter + this.itemGUID = 0; + // call super + Outlayer.prototype.reloadItems.call( this ); + }; + + Isotope.prototype._itemize = function() { + var items = Outlayer.prototype._itemize.apply( this, arguments ); + // assign ID for original-order + for ( var i=0, len = items.length; i < len; i++ ) { + var item = items[i]; + item.id = this.itemGUID++; + } + this._updateItemsSortData( items ); + return items; + }; + + + // -------------------------- layout -------------------------- // + + Isotope.prototype._initLayoutMode = function( name ) { + var Mode = LayoutMode.modes[ name ]; + // set mode options + // HACK extend initial options, back-fill in default options + var initialOpts = this.options[ name ] || {}; + this.options[ name ] = Mode.options ? + utils.extend( Mode.options, initialOpts ) : initialOpts; + // init layout mode instance + this.modes[ name ] = new Mode( this ); + }; + + + Isotope.prototype.layout = function() { + // if first time doing layout, do all magic + if ( !this._isLayoutInited && this.options.isInitLayout ) { + this.arrange(); + return; + } + this._layout(); + }; + + // private method to be used in layout() & magic() + Isotope.prototype._layout = function() { + // don't animate first layout + var isInstant = this._getIsInstant(); + // layout flow + this._resetLayout(); + this._manageStamps(); + this.layoutItems( this.filteredItems, isInstant ); + + // flag for initalized + this._isLayoutInited = true; + }; + + // filter + sort + layout + Isotope.prototype.arrange = function( opts ) { + // set any options pass + this.option( opts ); + this._getIsInstant(); + // filter, sort, and layout + + // filter + var filtered = this._filter( this.items ); + this.filteredItems = filtered.matches; + + var _this = this; + function hideReveal() { + _this.reveal( filtered.needReveal ); + _this.hide( filtered.needHide ); + } + + this._bindArrangeComplete(); + + if ( this._isInstant ) { + this._noTransition( hideReveal ); + } else { + hideReveal(); + } + + this._sort(); + this._layout(); + }; + // alias to _init for main plugin method + Isotope.prototype._init = Isotope.prototype.arrange; + + // HACK + // Don't animate/transition first layout + // Or don't animate/transition other layouts + Isotope.prototype._getIsInstant = function() { + var isInstant = this.options.isLayoutInstant !== undefined ? + this.options.isLayoutInstant : !this._isLayoutInited; + this._isInstant = isInstant; + return isInstant; + }; + + // listen for layoutComplete, hideComplete and revealComplete + // to trigger arrangeComplete + Isotope.prototype._bindArrangeComplete = function() { + // listen for 3 events to trigger arrangeComplete + var isLayoutComplete, isHideComplete, isRevealComplete; + var _this = this; + function arrangeParallelCallback() { + if ( isLayoutComplete && isHideComplete && isRevealComplete ) { + _this.dispatchEvent( 'arrangeComplete', null, [ _this.filteredItems ] ); + } + } + this.once( 'layoutComplete', function() { + isLayoutComplete = true; + arrangeParallelCallback(); + }); + this.once( 'hideComplete', function() { + isHideComplete = true; + arrangeParallelCallback(); + }); + this.once( 'revealComplete', function() { + isRevealComplete = true; + arrangeParallelCallback(); + }); + }; + + // -------------------------- filter -------------------------- // + + Isotope.prototype._filter = function( items ) { + var filter = this.options.filter; + filter = filter || '*'; + var matches = []; + var hiddenMatched = []; + var visibleUnmatched = []; + + var test = this._getFilterTest( filter ); + + // test each item + for ( var i=0, len = items.length; i < len; i++ ) { + var item = items[i]; + if ( item.isIgnored ) { + continue; + } + // add item to either matched or unmatched group + var isMatched = test( item ); + // item.isFilterMatched = isMatched; + // add to matches if its a match + if ( isMatched ) { + matches.push( item ); + } + // add to additional group if item needs to be hidden or revealed + if ( isMatched && item.isHidden ) { + hiddenMatched.push( item ); + } else if ( !isMatched && !item.isHidden ) { + visibleUnmatched.push( item ); + } + } + + // return collections of items to be manipulated + return { + matches: matches, + needReveal: hiddenMatched, + needHide: visibleUnmatched + }; + }; + + // get a jQuery, function, or a matchesSelector test given the filter + Isotope.prototype._getFilterTest = function( filter ) { + if ( jQuery && this.options.isJQueryFiltering ) { + // use jQuery + return function( item ) { + return jQuery( item.element ).is( filter ); + }; + } + if ( typeof filter == 'function' ) { + // use filter as function + return function( item ) { + return filter( item.element ); + }; + } + // default, use filter as selector string + return function( item ) { + return matchesSelector( item.element, filter ); + }; + }; + + // -------------------------- sorting -------------------------- // + + /** + * @params {Array} elems + * @public + */ + Isotope.prototype.updateSortData = function( elems ) { + // get items + var items; + if ( elems ) { + elems = utils.makeArray( elems ); + items = this.getItems( elems ); + } else { + // update all items if no elems provided + items = this.items; + } + + this._getSorters(); + this._updateItemsSortData( items ); + }; + + Isotope.prototype._getSorters = function() { + var getSortData = this.options.getSortData; + for ( var key in getSortData ) { + var sorter = getSortData[ key ]; + this._sorters[ key ] = mungeSorter( sorter ); + } + }; + + /** + * @params {Array} items - of Isotope.Items + * @private + */ + Isotope.prototype._updateItemsSortData = function( items ) { + // do not update if no items + var len = items && items.length; + + for ( var i=0; len && i < len; i++ ) { + var item = items[i]; + item.updateSortData(); + } + }; + + // ----- munge sorter ----- // + + // encapsulate this, as we just need mungeSorter + // other functions in here are just for munging + var mungeSorter = ( function() { + // add a magic layer to sorters for convienent shorthands + // `.foo-bar` will use the text of .foo-bar querySelector + // `[foo-bar]` will use attribute + // you can also add parser + // `.foo-bar parseInt` will parse that as a number + function mungeSorter( sorter ) { + // if not a string, return function or whatever it is + if ( typeof sorter != 'string' ) { + return sorter; + } + // parse the sorter string + var args = trim( sorter ).split(' '); + var query = args[0]; + // check if query looks like [an-attribute] + var attrMatch = query.match( /^\[(.+)\]$/ ); + var attr = attrMatch && attrMatch[1]; + var getValue = getValueGetter( attr, query ); + // use second argument as a parser + var parser = Isotope.sortDataParsers[ args[1] ]; + // parse the value, if there was a parser + sorter = parser ? function( elem ) { + return elem && parser( getValue( elem ) ); + } : + // otherwise just return value + function( elem ) { + return elem && getValue( elem ); + }; + + return sorter; + } + + // get an attribute getter, or get text of the querySelector + function getValueGetter( attr, query ) { + var getValue; + // if query looks like [foo-bar], get attribute + if ( attr ) { + getValue = function( elem ) { + return elem.getAttribute( attr ); + }; + } else { + // otherwise, assume its a querySelector, and get its text + getValue = function( elem ) { + var child = elem.querySelector( query ); + return child && getText( child ); + }; + } + return getValue; + } + + return mungeSorter; + })(); + + // parsers used in getSortData shortcut strings + Isotope.sortDataParsers = { + 'parseInt': function( val ) { + return parseInt( val, 10 ); + }, + 'parseFloat': function( val ) { + return parseFloat( val ); + } + }; + + // ----- sort method ----- // + + // sort filteredItem order + Isotope.prototype._sort = function() { + var sortByOpt = this.options.sortBy; + if ( !sortByOpt ) { + return; + } + // concat all sortBy and sortHistory + var sortBys = [].concat.apply( sortByOpt, this.sortHistory ); + // sort magic + var itemSorter = getItemSorter( sortBys, this.options.sortAscending ); + this.filteredItems.sort( itemSorter ); + // keep track of sortBy History + if ( sortByOpt != this.sortHistory[0] ) { + // add to front, oldest goes in last + this.sortHistory.unshift( sortByOpt ); + } + }; + + // returns a function used for sorting + function getItemSorter( sortBys, sortAsc ) { + return function sorter( itemA, itemB ) { + // cycle through all sortKeys + for ( var i = 0, len = sortBys.length; i < len; i++ ) { + var sortBy = sortBys[i]; + var a = itemA.sortData[ sortBy ]; + var b = itemB.sortData[ sortBy ]; + if ( a > b || a < b ) { + // if sortAsc is an object, use the value given the sortBy key + var isAscending = sortAsc[ sortBy ] !== undefined ? sortAsc[ sortBy ] : sortAsc; + var direction = isAscending ? 1 : -1; + return ( a > b ? 1 : -1 ) * direction; + } + } + return 0; + }; + } + + // -------------------------- methods -------------------------- // + + // get layout mode + Isotope.prototype._mode = function() { + var layoutMode = this.options.layoutMode; + var mode = this.modes[ layoutMode ]; + if ( !mode ) { + // TODO console.error + throw new Error( 'No layout mode: ' + layoutMode ); + } + // HACK sync mode's options + // any options set after init for layout mode need to be synced + mode.options = this.options[ layoutMode ]; + return mode; + }; + + Isotope.prototype._resetLayout = function() { + // trigger original reset layout + Outlayer.prototype._resetLayout.call( this ); + this._mode()._resetLayout(); + }; + + Isotope.prototype._getItemLayoutPosition = function( item ) { + return this._mode()._getItemLayoutPosition( item ); + }; + + Isotope.prototype._manageStamp = function( stamp ) { + this._mode()._manageStamp( stamp ); + }; + + Isotope.prototype._getContainerSize = function() { + return this._mode()._getContainerSize(); + }; + + Isotope.prototype.needsResizeLayout = function() { + return this._mode().needsResizeLayout(); + }; + + // -------------------------- adding & removing -------------------------- // + + // HEADS UP overwrites default Outlayer appended + Isotope.prototype.appended = function( elems ) { + var items = this.addItems( elems ); + if ( !items.length ) { + return; + } + // filter, layout, reveal new items + var filteredItems = this._filterRevealAdded( items ); + // add to filteredItems + this.filteredItems = this.filteredItems.concat( filteredItems ); + }; + + // HEADS UP overwrites default Outlayer prepended + Isotope.prototype.prepended = function( elems ) { + var items = this._itemize( elems ); + if ( !items.length ) { + return; + } + // start new layout + this._resetLayout(); + this._manageStamps(); + // filter, layout, reveal new items + var filteredItems = this._filterRevealAdded( items ); + // layout previous items + this.layoutItems( this.filteredItems ); + // add to items and filteredItems + this.filteredItems = filteredItems.concat( this.filteredItems ); + this.items = items.concat( this.items ); + }; + + Isotope.prototype._filterRevealAdded = function( items ) { + var filtered = this._filter( items ); + this.hide( filtered.needHide ); + // reveal all new items + this.reveal( filtered.matches ); + // layout new items, no transition + this.layoutItems( filtered.matches, true ); + return filtered.matches; + }; + + /** + * Filter, sort, and layout newly-appended item elements + * @param {Array or NodeList or Element} elems + */ + Isotope.prototype.insert = function( elems ) { + var items = this.addItems( elems ); + if ( !items.length ) { + return; + } + // append item elements + var i, item; + var len = items.length; + for ( i=0; i < len; i++ ) { + item = items[i]; + this.element.appendChild( item.element ); + } + // filter new stuff + var filteredInsertItems = this._filter( items ).matches; + // set flag + for ( i=0; i < len; i++ ) { + items[i].isLayoutInstant = true; + } + this.arrange(); + // reset flag + for ( i=0; i < len; i++ ) { + delete items[i].isLayoutInstant; + } + this.reveal( filteredInsertItems ); + }; + + var _remove = Isotope.prototype.remove; + Isotope.prototype.remove = function( elems ) { + elems = utils.makeArray( elems ); + var removeItems = this.getItems( elems ); + // do regular thing + _remove.call( this, elems ); + // bail if no items to remove + var len = removeItems && removeItems.length; + if ( !len ) { + return; + } + // remove elems from filteredItems + for ( var i=0; i < len; i++ ) { + var item = removeItems[i]; + // remove item from collection + utils.removeFrom( this.filteredItems, item ); + } + }; + + Isotope.prototype.shuffle = function() { + // update random sortData + for ( var i=0, len = this.items.length; i < len; i++ ) { + var item = this.items[i]; + item.sortData.random = Math.random(); + } + this.options.sortBy = 'random'; + this._sort(); + this._layout(); + }; + + /** + * trigger fn without transition + * kind of hacky to have this in the first place + * @param {Function} fn + * @returns ret + * @private + */ + Isotope.prototype._noTransition = function( fn ) { + // save transitionDuration before disabling + var transitionDuration = this.options.transitionDuration; + // disable transition + this.options.transitionDuration = 0; + // do it + var returnValue = fn.call( this ); + // re-enable transition for reveal + this.options.transitionDuration = transitionDuration; + return returnValue; + }; + + // ----- helper methods ----- // + + /** + * getter method for getting filtered item elements + * @returns {Array} elems - collection of item elements + */ + Isotope.prototype.getFilteredItemElements = function() { + var elems = []; + for ( var i=0, len = this.filteredItems.length; i < len; i++ ) { + elems.push( this.filteredItems[i].element ); + } + return elems; + }; + + // ----- ----- // + + return Isotope; + +})); + + +/*! + * imagesLoaded PACKAGED v5.0.0 + * JavaScript is all like "You images are done yet or what?" + * MIT License + */ + +/** + * EvEmitter v2.1.1 + * Lil' event emitter + * MIT License + */ + +( function( global, factory ) { + // universal module definition + if ( typeof module == 'object' && module.exports ) { + // CommonJS - Browserify, Webpack + module.exports = factory(); + } else { + // Browser globals + global.EvEmitter = factory(); + } + +}( typeof window != 'undefined' ? window : this, function() { + +function EvEmitter() {} + +let proto = EvEmitter.prototype; + +proto.on = function( eventName, listener ) { + if ( !eventName || !listener ) return this; + + // set events hash + let events = this._events = this._events || {}; + // set listeners array + let listeners = events[ eventName ] = events[ eventName ] || []; + // only add once + if ( !listeners.includes( listener ) ) { + listeners.push( listener ); + } + + return this; +}; + +proto.once = function( eventName, listener ) { + if ( !eventName || !listener ) return this; + + // add event + this.on( eventName, listener ); + // set once flag + // set onceEvents hash + let onceEvents = this._onceEvents = this._onceEvents || {}; + // set onceListeners object + let onceListeners = onceEvents[ eventName ] = onceEvents[ eventName ] || {}; + // set flag + onceListeners[ listener ] = true; + + return this; +}; + +proto.off = function( eventName, listener ) { + let listeners = this._events && this._events[ eventName ]; + if ( !listeners || !listeners.length ) return this; + + let index = listeners.indexOf( listener ); + if ( index != -1 ) { + listeners.splice( index, 1 ); + } + + return this; +}; + +proto.emitEvent = function( eventName, args ) { + let listeners = this._events && this._events[ eventName ]; + if ( !listeners || !listeners.length ) return this; + + // copy over to avoid interference if .off() in listener + listeners = listeners.slice( 0 ); + args = args || []; + // once stuff + let onceListeners = this._onceEvents && this._onceEvents[ eventName ]; + + for ( let listener of listeners ) { + let isOnce = onceListeners && onceListeners[ listener ]; + if ( isOnce ) { + // remove listener + // remove before trigger to prevent recursion + this.off( eventName, listener ); + // unset once flag + delete onceListeners[ listener ]; + } + // trigger listener + listener.apply( this, args ); + } + + return this; +}; + +proto.allOff = function() { + delete this._events; + delete this._onceEvents; + return this; +}; + +return EvEmitter; + +} ) ); +/*! + * imagesLoaded v5.0.0 + * JavaScript is all like "You images are done yet or what?" + * MIT License + */ + +( function( window, factory ) { + // universal module definition + if ( typeof module == 'object' && module.exports ) { + // CommonJS + module.exports = factory( window, require('ev-emitter') ); + } else { + // browser global + window.imagesLoaded = factory( window, window.EvEmitter ); + } + +} )( typeof window !== 'undefined' ? window : this, + function factory( window, EvEmitter ) { + +let $ = window.jQuery; +let console = window.console; + +// -------------------------- helpers -------------------------- // + +// turn element or nodeList into an array +function makeArray( obj ) { + // use object if already an array + if ( Array.isArray( obj ) ) return obj; + + let isArrayLike = typeof obj == 'object' && typeof obj.length == 'number'; + // convert nodeList to array + if ( isArrayLike ) return [ ...obj ]; + + // array of single index + return [ obj ]; +} + +// -------------------------- imagesLoaded -------------------------- // + +/** + * @param {[Array, Element, NodeList, String]} elem + * @param {[Object, Function]} options - if function, use as callback + * @param {Function} onAlways - callback function + * @returns {ImagesLoaded} + */ +function ImagesLoaded( elem, options, onAlways ) { + // coerce ImagesLoaded() without new, to be new ImagesLoaded() + if ( !( this instanceof ImagesLoaded ) ) { + return new ImagesLoaded( elem, options, onAlways ); + } + // use elem as selector string + let queryElem = elem; + if ( typeof elem == 'string' ) { + queryElem = document.querySelectorAll( elem ); + } + // bail if bad element + if ( !queryElem ) { + console.error(`Bad element for imagesLoaded ${queryElem || elem}`); + return; + } + + this.elements = makeArray( queryElem ); + this.options = {}; + // shift arguments if no options set + if ( typeof options == 'function' ) { + onAlways = options; + } else { + Object.assign( this.options, options ); + } + + if ( onAlways ) this.on( 'always', onAlways ); + + this.getImages(); + // add jQuery Deferred object + if ( $ ) this.jqDeferred = new $.Deferred(); + + // HACK check async to allow time to bind listeners + setTimeout( this.check.bind( this ) ); +} + +ImagesLoaded.prototype = Object.create( EvEmitter.prototype ); + +ImagesLoaded.prototype.getImages = function() { + this.images = []; + + // filter & find items if we have an item selector + this.elements.forEach( this.addElementImages, this ); +}; + +const elementNodeTypes = [ 1, 9, 11 ]; + +/** + * @param {Node} elem + */ +ImagesLoaded.prototype.addElementImages = function( elem ) { + // filter siblings + if ( elem.nodeName === 'IMG' ) { + this.addImage( elem ); + } + // get background image on element + if ( this.options.background === true ) { + this.addElementBackgroundImages( elem ); + } + + // find children + // no non-element nodes, #143 + let { nodeType } = elem; + if ( !nodeType || !elementNodeTypes.includes( nodeType ) ) return; + + let childImgs = elem.querySelectorAll('img'); + // concat childElems to filterFound array + for ( let img of childImgs ) { + this.addImage( img ); + } + + // get child background images + if ( typeof this.options.background == 'string' ) { + let children = elem.querySelectorAll( this.options.background ); + for ( let child of children ) { + this.addElementBackgroundImages( child ); + } + } +}; + +const reURL = /url\((['"])?(.*?)\1\)/gi; + +ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) { + let style = getComputedStyle( elem ); + // Firefox returns null if in a hidden iframe https://bugzil.la/548397 + if ( !style ) return; + + // get url inside url("...") + let matches = reURL.exec( style.backgroundImage ); + while ( matches !== null ) { + let url = matches && matches[2]; + if ( url ) { + this.addBackground( url, elem ); + } + matches = reURL.exec( style.backgroundImage ); + } +}; + +/** + * @param {Image} img + */ +ImagesLoaded.prototype.addImage = function( img ) { + let loadingImage = new LoadingImage( img ); + this.images.push( loadingImage ); +}; + +ImagesLoaded.prototype.addBackground = function( url, elem ) { + let background = new Background( url, elem ); + this.images.push( background ); +}; + +ImagesLoaded.prototype.check = function() { + this.progressedCount = 0; + this.hasAnyBroken = false; + // complete if no images + if ( !this.images.length ) { + this.complete(); + return; + } + + /* eslint-disable-next-line func-style */ + let onProgress = ( image, elem, message ) => { + // HACK - Chrome triggers event before object properties have changed. #83 + setTimeout( () => { + this.progress( image, elem, message ); + } ); + }; + + this.images.forEach( function( loadingImage ) { + loadingImage.once( 'progress', onProgress ); + loadingImage.check(); + } ); +}; + +ImagesLoaded.prototype.progress = function( image, elem, message ) { + this.progressedCount++; + this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded; + // progress event + this.emitEvent( 'progress', [ this, image, elem ] ); + if ( this.jqDeferred && this.jqDeferred.notify ) { + this.jqDeferred.notify( this, image ); + } + // check if completed + if ( this.progressedCount === this.images.length ) { + this.complete(); + } + + if ( this.options.debug && console ) { + console.log( `progress: ${message}`, image, elem ); + } +}; + +ImagesLoaded.prototype.complete = function() { + let eventName = this.hasAnyBroken ? 'fail' : 'done'; + this.isComplete = true; + this.emitEvent( eventName, [ this ] ); + this.emitEvent( 'always', [ this ] ); + if ( this.jqDeferred ) { + let jqMethod = this.hasAnyBroken ? 'reject' : 'resolve'; + this.jqDeferred[ jqMethod ]( this ); + } +}; + +// -------------------------- -------------------------- // + +function LoadingImage( img ) { + this.img = img; +} + +LoadingImage.prototype = Object.create( EvEmitter.prototype ); + +LoadingImage.prototype.check = function() { + // If complete is true and browser supports natural sizes, + // try to check for image status manually. + let isComplete = this.getIsImageComplete(); + if ( isComplete ) { + // report based on naturalWidth + this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); + return; + } + + // If none of the checks above matched, simulate loading on detached element. + this.proxyImage = new Image(); + // add crossOrigin attribute. #204 + if ( this.img.crossOrigin ) { + this.proxyImage.crossOrigin = this.img.crossOrigin; + } + this.proxyImage.addEventListener( 'load', this ); + this.proxyImage.addEventListener( 'error', this ); + // bind to image as well for Firefox. #191 + this.img.addEventListener( 'load', this ); + this.img.addEventListener( 'error', this ); + this.proxyImage.src = this.img.currentSrc || this.img.src; +}; + +LoadingImage.prototype.getIsImageComplete = function() { + // check for non-zero, non-undefined naturalWidth + // fixes Safari+InfiniteScroll+Masonry bug infinite-scroll#671 + return this.img.complete && this.img.naturalWidth; +}; + +LoadingImage.prototype.confirm = function( isLoaded, message ) { + this.isLoaded = isLoaded; + let { parentNode } = this.img; + // emit progress with parent or self + let elem = parentNode.nodeName === 'PICTURE' ? parentNode : this.img; + this.emitEvent( 'progress', [ this, elem, message ] ); +}; + +// ----- events ----- // + +// trigger specified handler for event type +LoadingImage.prototype.handleEvent = function( event ) { + let method = 'on' + event.type; + if ( this[ method ] ) { + this[ method ]( event ); + } +}; + +LoadingImage.prototype.onload = function() { + this.confirm( true, 'onload' ); + this.unbindEvents(); +}; + +LoadingImage.prototype.onerror = function() { + this.confirm( false, 'onerror' ); + this.unbindEvents(); +}; + +LoadingImage.prototype.unbindEvents = function() { + this.proxyImage.removeEventListener( 'load', this ); + this.proxyImage.removeEventListener( 'error', this ); + this.img.removeEventListener( 'load', this ); + this.img.removeEventListener( 'error', this ); +}; + +// -------------------------- Background -------------------------- // + +function Background( url, element ) { + this.url = url; + this.element = element; + this.img = new Image(); +} + +// inherit LoadingImage prototype +Background.prototype = Object.create( LoadingImage.prototype ); + +Background.prototype.check = function() { + this.img.addEventListener( 'load', this ); + this.img.addEventListener( 'error', this ); + this.img.src = this.url; + // check if image is already complete + let isComplete = this.getIsImageComplete(); + if ( isComplete ) { + this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' ); + this.unbindEvents(); + } +}; + +Background.prototype.unbindEvents = function() { + this.img.removeEventListener( 'load', this ); + this.img.removeEventListener( 'error', this ); +}; + +Background.prototype.confirm = function( isLoaded, message ) { + this.isLoaded = isLoaded; + this.emitEvent( 'progress', [ this, this.element, message ] ); +}; + +// -------------------------- jQuery -------------------------- // + +ImagesLoaded.makeJQueryPlugin = function( jQuery ) { + jQuery = jQuery || window.jQuery; + if ( !jQuery ) return; + + // set local variable + $ = jQuery; + // $().imagesLoaded() + $.fn.imagesLoaded = function( options, onAlways ) { + let instance = new ImagesLoaded( this, options, onAlways ); + return instance.jqDeferred.promise( $( this ) ); + }; +}; +// try making plugin +ImagesLoaded.makeJQueryPlugin(); + +// -------------------------- -------------------------- // + +return ImagesLoaded; + +} ); + +// tipsy, facebook style tooltips for jquery +// version 1.0.0a +// (c) 2008-2010 jason frame [jason@onehackoranother.com] +// releated under the MIT license + +(function($) { + + function fixTitle($ele) { + if ($ele.attr('title') || typeof($ele.attr('original-title')) != 'string') { + $ele.attr('original-title', $ele.attr('title') || '').removeAttr('title'); + } + } + + function Tipsy(element, options) { + this.$element = $(element); + this.options = options; + this.enabled = true; + fixTitle(this.$element); + } + + Tipsy.prototype = { + show: function() { + var title = this.getTitle(); + if (title && this.enabled) { + var $tip = this.tip(); + + $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title); + $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity + $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body); + + var pos = $.extend({}, this.$element.offset(), { + width: this.$element[0].offsetWidth, + height: this.$element[0].offsetHeight + }); + + var actualWidth = $tip[0].offsetWidth, actualHeight = $tip[0].offsetHeight; + var gravity = (typeof this.options.gravity == 'function') + ? this.options.gravity.call(this.$element[0]) + : this.options.gravity; + + var tp; + switch (gravity.charAt(0)) { + case 'n': + tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; + break; + case 's': + tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; + break; + case 'e': + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset}; + break; + case 'w': + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset}; + break; + } + + if (gravity.length == 2) { + if (gravity.charAt(1) == 'w') { + tp.left = pos.left + pos.width / 2 - 15; + } else { + tp.left = pos.left + pos.width / 2 - actualWidth + 15; + } + } + + $tip.css(tp).addClass('tipsy-' + gravity); + + if (this.options.fade) { + $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity}); + } else { + $tip.css({visibility: 'visible', opacity: this.options.opacity}); + } + } + }, + + hide: function() { + if (this.options.fade) { + this.tip().stop().fadeOut(function() { $(this).remove(); }); + } else { + this.tip().remove(); + } + }, + + getTitle: function() { + var title, $e = this.$element, o = this.options; + fixTitle($e); + var title, o = this.options; + if (typeof o.title == 'string') { + title = $e.attr(o.title == 'title' ? 'original-title' : o.title); + } else if (typeof o.title == 'function') { + title = o.title.call($e[0]); + } + title = ('' + title).replace(/(^\s*|\s*$)/, ""); + return title || o.fallback; + }, + + tip: function() { + if (!this.$tip) { + this.$tip = $('
').html('
'); + } + return this.$tip; + }, + + validate: function() { + if (!this.$element[0].parentNode) { + this.hide(); + this.$element = null; + this.options = null; + } + }, + + enable: function() { this.enabled = true; }, + disable: function() { this.enabled = false; }, + toggleEnabled: function() { this.enabled = !this.enabled; } + }; + + $.fn.tipsy = function(options) { + + if (options === true) { + return this.data('tipsy'); + } else if (typeof options == 'string') { + return this.data('tipsy')[options](); + } + + options = $.extend({}, $.fn.tipsy.defaults, options); + + function get(ele) { + var tipsy = $.data(ele, 'tipsy'); + if (!tipsy) { + tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options)); + $.data(ele, 'tipsy', tipsy); + } + return tipsy; + } + + function enter() { + var tipsy = get(this); + tipsy.hoverState = 'in'; + if (options.delayIn == 0) { + tipsy.show(); + } else { + setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn); + } + }; + + function leave() { + var tipsy = get(this); + tipsy.hoverState = 'out'; + if (options.delayOut == 0) { + tipsy.hide(); + } else { + setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut); + } + }; + + if (!options.live) this.each(function() { get(this); }); + + if (options.trigger != 'manual') { + var binder = options.live ? 'live' : 'bind', + eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus', + eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur'; + this[binder](eventIn, enter)[binder](eventOut, leave); + } + + return this; + + }; + + $.fn.tipsy.defaults = { + delayIn: 0, + delayOut: 0, + fade: false, + fallback: '', + gravity: 'n', + html: false, + live: false, + offset: 0, + opacity: 0.8, + title: 'title', + trigger: 'hover' + }; + + // Overwrite this method to provide options on a per-element basis. + // For example, you could store the gravity in a 'tipsy-gravity' attribute: + // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' }); + // (remember - do not modify 'options' in place!) + $.fn.tipsy.elementOptions = function(ele, options) { + return $.metadata ? $.extend({}, options, $(ele).metadata()) : options; + }; + + $.fn.tipsy.autoNS = function() { + return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n'; + }; + + $.fn.tipsy.autoWE = function() { + return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w'; + }; + +})(jQuery); \ No newline at end of file diff --git a/app/assets/javascripts/recruit_news/wpex.min.js b/app/assets/javascripts/recruit_news/wpex.min.js new file mode 100644 index 0000000..dbebee7 --- /dev/null +++ b/app/assets/javascripts/recruit_news/wpex.min.js @@ -0,0 +1 @@ +var wpex={};$.fn.wpexEqualHeights=function(t){var e=this,i=$(window),s=$.extend({children:"",mobileBreakPoint:"",reset:!1},t);function o(t,o){var n=0;s.children&&((t=t.find(s.children).not(".vc_row.vc_inner .vc_column-inner")).each(function(){var t=$(this);if(o&&t.css("height",""),$height=t.outerHeight(!0),0!=t.children().length){$height=0;for(var e=t.children(),i=0;in&&(n=$height),window.wpexAnimsition.equal_height||t.css("height",$height+"px")}),window.wpexAnimsition.equal_height&&t.css("height",n+"px"))}$(s.children).length&&(e.each(function(){var t=$(this);t.is(window.wpexAnimsition.container_block)?o(t,!1):t.imagesLoaded(function(){o(t,!1)})}),i.resize(function(){e.each(function(){o($(this),!0)})}))},function(k){"use strict";(wpex={init:function(){this.config(),this.bindEvents()},config:function(){this.config={$window:k(window),$document:k(document),$head:k("head"),windowWidth:k(window).width(),windowHeight:k(window).height(),windowTop:k(window).scrollTop(),$body:k("body"),viewportWidth:"",$wpAdminBar:null,isRetina:!1,heightChanged:!1,widthChanged:!1,isRTL:!1,iLightboxSettings:{},vcActive:!1,isMobile:!1,mobileMenuStyle:null,mobileMenuToggleStyle:null,mobileMenuBreakpoint:960,$siteWrap:null,$siteMain:null,$siteHeader:null,siteHeaderStyle:null,siteHeaderHeight:0,siteHeaderTop:0,siteHeaderBottom:0,verticalHeaderActive:!1,hasHeaderOverlay:!1,hasStickyHeader:!1,stickyHeaderStyle:null,hasStickyMobileHeader:!1,hasStickyNavbar:!1,$siteLogo:null,siteLogoHeight:0,siteLogoSrc:null,$siteNavWrap:null,$siteNav:null,$siteNavDropdowns:null,$localScrollTargets:"li.local-scroll a, a.local-scroll, .local-scroll-link, .local-scroll-link > a",localScrollOffset:0,localScrollSpeed:600,localScrollEasing:"easeInOutCubic",localScrollSections:[],hasTopBar:!1,hasStickyTopBar:!1,$stickyTopBar:null,hasStickyTopBarMobile:!1,hasFixedFooter:!1}},bindEvents:function(){var t=this;t.config.$document.ready(function(){t.initUpdateConfig(),t.responsiveText(),t.superfish(),t.mobileMenu(),t.navNoClick(),t.hideEditLink(),t.menuWidgetAccordion(),t.inlineHeaderLogo(),t.menuSearch(),t.headerCart(),t.backTopLink(),t.smoothCommentScroll(),t.tipsyTooltips(),t.customHovers(),t.toggleBar(),t.localScrollLinks(),t.customSelects(),t.wpexOwlCarousel(),t.autoLightbox(),t.iLightbox(),t.overlayHovers(),t.skillbar(),t.milestone(),t.countdown(),t.typedText(),t.equalHeights(),t.archiveMasonryGrids(),t.isotopeGrids(),t.responsiveCSS(),t.vcexFilterNav(),t.ctf7Preloader(),t.vcAccessability(),t.vcPageEditable(),t.wooGallery(),t.twentytwenty()}),t.config.$window.on("load",function(){t.config.$body.addClass("wpex-window-loaded"),t.windowLoadUpdateConfig(),t.megaMenusWidth(),t.megaMenusTop(),t.flushDropdownsTop(),t.fadeIn(),t.parallax(),t.cartDropdownRelocate(),t.sliderPro(),t.stickyTopBar(),t.vcTabsTogglesJS(),t.headerOverlayOffset(),t.config.hasStickyHeader&&(t.stickyHeaderStyle=wpexLocalize.stickyHeaderStyle,"standard"!=t.stickyHeaderStyle&&"shrink"!=t.stickyHeaderStyle&&"shrink_animated"!=t.stickyHeaderStyle||t.stickyHeader()),t.stickyHeaderMenu(),t.stickyVcexNavbar(),t.footerReveal(),t.fixedFooter(),t.titleBreadcrumbsFix(),void 0!==k.fn.infinitescroll&&k("div.infinite-scroll-nav").length&&t.infiniteScrollInit(),t.loadMore(),wpexLocalize.scrollToHash&&window.setTimeout(function(){t.scrollToHash(t)},parseInt(wpexLocalize.scrollToHashTimeout))}),t.config.$window.resize(function(){t.config.widthChanged=!1,t.config.heightChanged=!1,t.config.$window.width()!=t.config.windowWidth&&(t.config.widthChanged=!0,t.widthResizeUpdateConfig()),t.config.$window.height()!=t.config.windowHeight&&(t.config.windowHeight=t.config.$window.height(),t.config.heightChanged=!0)}),t.config.$window.scroll(function(){t.config.$hasScrolled=!1,t.config.$window.scrollTop()!=t.config.windowTop&&(t.config.$hasScrolled=!0,t.config.windowTop=t.config.$window.scrollTop(),t.localScrollHighlight())}),t.config.$window.on("orientationchange",function(){t.widthResizeUpdateConfig(),t.isotopeGrids(),t.vcexFilterNav(),t.archiveMasonryGrids()})},initUpdateConfig:function(){var t=this,e=(t.config.$body.addClass("wpex-docready"),t.config.vcActive=this.config.$body.hasClass("wpb-js-composer"),t.config.viewportWidth=t.viewportWidth(),t.config.isRetina=t.retinaCheck(),t.config.isRetina&&t.config.$body.addClass("wpex-is-retina"),t.mobileCheck()&&(t.config.isMobile=!0,t.config.$body.addClass("wpex-is-mobile-device")),k("#wpadminbar")),e=(e.length&&(t.config.$wpAdminBar=e),k("#wrap")),e=(e&&(t.config.$siteWrap=e),k("#main"));e&&(t.config.$siteMain=e);k("#site-header").length&&(t.config.siteHeaderStyle=wpexLocalize.siteHeaderStyle,t.config.$siteHeader=k("#site-header"));var i,e=k("#site-logo img.logo-img"),e=(e.length&&(t.config.$siteLogo=e,t.config.siteLogoSrc=t.config.$siteLogo.attr("src")),k("#site-navigation-wrap")),e=(e.length&&(t.config.$siteNavWrap=e,(i=k("#site-navigation",e)).length&&(t.config.$siteNav=i),wpexLocalize.hasStickyNavbar&&(t.config.hasStickyNavbar=!0),i=k(".dropdown-menu > .menu-item-has-children > ul",e),e.length&&(t.config.$siteNavDropdowns=i)),wpexLocalize.hasMobileMenu&&(t.config.mobileMenuStyle=wpexLocalize.mobileMenuStyle,t.config.mobileMenuToggleStyle=wpexLocalize.mobileMenuToggleStyle,t.config.mobileMenuBreakpoint=wpexLocalize.mobileMenuBreakpoint),t.config.$body.hasClass("wpex-has-fixed-footer")&&(t.config.hasFixedFooter=!0),t.config.$footerReveal=k(".footer-reveal-visible"),t.config.$footerReveal.length&&t.config.$siteWrap&&t.config.$siteMain&&(t.config.$hasFooterReveal=!0),t.config.$siteHeader&&t.config.$body.hasClass("has-overlay-header")&&(t.config.hasHeaderOverlay=!0),k("#top-bar-wrap"));e.length&&(t.config.hasTopBar=!0,e.hasClass("wpex-top-bar-sticky")&&(t.config.$stickyTopBar=e,t.config.$stickyTopBar.length&&(t.config.hasStickyTopBar=!0,t.config.hasStickyTopBarMobile=wpexLocalize.hasStickyTopBarMobile))),t.config.hasStickyMobileHeader=wpexLocalize.hasStickyMobileHeader,t.config.$siteHeader&&wpexLocalize.hasStickyHeader&&(t.config.hasStickyHeader=!0),this.config.$body.hasClass("wpex-has-vertical-header")&&(t.config.verticalHeaderActive=!0),wpexLocalize.localScrollSpeed&&(t.config.localScrollSpeed=parseInt(wpexLocalize.localScrollSpeed)),wpexLocalize.localScrollEasing&&(t.config.localScrollEasing=wpexLocalize.localScrollEasing,"false"==t.config.localScrollEasing&&(t.config.localScrollEasing="swing")),t.config.localScrollSections=t.localScrollSections()},windowLoadUpdateConfig:function(){var t;this.config.$siteHeader&&(t=this.config.$siteHeader.offset().top,this.config.windowHeight=this.config.$window.height(),this.config.siteHeaderHeight=this.config.$siteHeader.outerHeight(),this.config.siteHeaderBottom=t+this.config.siteHeaderHeight,this.config.siteHeaderTop=t,this.config.$siteLogo&&(this.config.siteLogoHeight=this.config.$siteLogo.height())),this.config.localScrollOffset=this.parseLocalScrollOffset("init")},widthResizeUpdateConfig:function(){this.config.windowHeight=this.config.$window.height(),this.config.windowWidth=this.config.$window.width(),this.config.windowTop=this.config.$window.scrollTop(),this.config.viewportWidth=this.viewportWidth(),this.config.$siteHeader&&(this.config.siteHeaderHeight=this.config.$siteHeader.outerHeight()),this.config.$siteLogo&&(this.config.siteLogoHeight=this.config.$siteLogo.height()),this.config.windowWidth<960?this.config.verticalHeaderActive=!1:this.config.$body.hasClass("wpex-has-vertical-header")&&(this.config.verticalHeaderActive=!0),this.config.localScrollOffset=this.parseLocalScrollOffset("resize"),this.megaMenusWidth(),this.inlineHeaderLogo(),this.cartDropdownRelocate(),this.overlayHovers(),this.responsiveText()},retinaCheck:function(){return 1 ul",this.config.$siteNavWrap)).length&&(i=(e=this.config.$siteHeader.find(".container").outerWidth())-this.config.$siteNavWrap.outerWidth()-(i="auto"==(i=parseInt(this.config.$siteNavWrap.css("right")))?0:i),t.css({width:e,"margin-left":-i})))},megaMenusTop:function(){var i,o=this;function t(){var t,e;o.config.$siteNavWrap.is(":visible")&&(t=o.config.$siteHeader.outerHeight(),e=o.config.$siteNavWrap.outerHeight(),i.css({top:(t-e)/2+e}))}!o.config.$siteNavDropdowns||"one"!=o.config.siteHeaderStyle||(i=k(".megamenu > ul",o.config.$siteNavWrap)).length&&(t(),this.config.$window.scroll(function(){t()}),this.config.$window.resize(function(){t()}),k(".megamenu > a",o.config.$siteNav).hover(function(){t()}))},flushDropdownsTop:function(){var i=this;function t(){var t,e;i.config.$siteNavWrap.is(":visible")&&(t=i.config.$siteHeader.outerHeight(),e=i.config.$siteNavWrap.outerHeight(),i.config.$siteNavDropdowns.css("top",(t-e)/2+e))}i.config.$siteNavDropdowns&&i.config.$siteNavWrap.hasClass("wpex-flush-dropdowns")&&(t(),this.config.$window.scroll(function(){t()}),this.config.$window.resize(function(){t()}),k(".wpex-flush-dropdowns li.menu-item-has-children > a").hover(function(){t()}))},mobileMenu:function(){"sidr"==this.config.mobileMenuStyle&&void 0!==wpexLocalize.sidrSource?this.mobileMenuSidr():"toggle"==this.config.mobileMenuStyle?this.mobileMenuToggle():"full_screen"==this.config.mobileMenuStyle&&this.mobileMenuFullScreen()},mobileMenuSidr:function(){var e=this,t=k("a.mobile-menu-toggle, li.mobile-menu-toggle > a"),i=(e.config.$body.append('
'),k(".wpex-sidr-overlay")),o=(t.click(function(){k(this).toggleClass("wpex-active")}),t.sidr({name:"sidr-main",source:wpexLocalize.sidrSource,side:wpexLocalize.sidrSide,displace:wpexLocalize.sidrDisplace,speed:parseInt(wpexLocalize.sidrSpeed),renaming:!0,bind:"click",onOpen:function(){k("#sidr-main").addClass("wpex-mobile-menu"),wpexLocalize.sidrBodyNoScroll&&e.config.$body.addClass("wpex-noscroll"),i.fadeIn(wpexLocalize.sidrSpeed,function(){i.addClass("wpex-custom-cursor")}),k(".wpex-sidr-overlay").on("click",function(t){return k.sidr("close","sidr-main"),!1})},onClose:function(){t.removeClass("wpex-active"),wpexLocalize.sidrBodyNoScroll&&e.config.$body.removeClass("wpex-noscroll"),i.removeClass("wpex-custom-cursor").fadeOut(wpexLocalize.sidrSpeed)},onCloseEnd:function(){k(".sidr-class-menu-item-has-children.active").removeClass("active").find("ul").hide(),void 0!==k.fn.vc_rowBehaviour&&vc_rowBehaviour()}}),k("#sidr-main")),n=k(".sidr-class-dropdown-menu",o),s=k(".sidr-class-menu-item-has-children > a",n);k(".sidr-class-menu-item-has-children",n).children("a").append(''),s.on("click",function(t){var e,i=k(this).parent("li");return i.hasClass("active")?(i.removeClass("active"),i.find("li").removeClass("active"),i.find("ul").stop(!0,!0).slideUp("fast")):(e=i.parents("li"),k(".sidr-class-menu-item-has-children",n).not(e).removeClass("active").children("ul").stop(!0,!0).slideUp("fast"),i.addClass("active").children("ul").stop(!0,!0).slideDown("fast")),!1}),k("li.sidr-class-menu-item-has-children > a",n).each(function(){var t,e,i=k(this);i&&i.attr("href")&&"#"!=i.attr("href")&&(e=(t=i.parent("li")).clone(),i.removeAttr("data-ls_linkto"),t.removeClass("sidr-class-local-scroll"),e.removeClass("sidr-class-menu-item-has-children sidr-class-dropdown"),e.find("a").removeClass(),e.find("ul, .sidr-class-dropdown-toggle").remove().end().prependTo(i.next("ul")))}),k("[class*='sidr-class-fa']",o).attr("class",function(t,e){return e=(e=e.replace("sidr-class-fa","fa")).replace("sidr-class-fa-","fa-")}),k(".sidr-class-wpex-close > a",o).on("click",function(t){t.preventDefault(),k.sidr("close","sidr-main")}),e.config.$window.resize(function(){e.config.viewportWidth>=e.config.mobileMenuBreakpoint&&k.sidr("close","sidr-main")}),k("li.sidr-class-local-scroll > a",o).click(function(){var t=this.hash;if(-1 a"),r=("fixed_top"==t.config.mobileMenuToggleStyle?(s=k("#wpex-mobile-menu-fixed-top")).length&&s.append(''):"absolute"==e?"navbar"==t.config.mobileMenuToggleStyle?(s=k("#wpex-mobile-menu-navbar")).length&&s.append(''):s&&s.append(''):("afterself"==e&&(s=k("#wpex-mobile-menu-navbar")),k('').insertAfter(s)),k(".mobile-toggle-nav"));k("#mobile-menu-alternative").length?(o=k("#mobile-menu-alternative .dropdown-menu").html(),k("#mobile-menu-alternative").remove()):o=k(".dropdown-menu",t.config.$siteNav).html(),r.html('
    '+o+"
"),k(".mobile-toggle-nav-ul, .mobile-toggle-nav-ul *").children().each(function(){k(this).removeAttr("style")}),k(".mobile-toggle-nav-ul").addClass("container");r.find("li.menu-item-has-children > a").each(function(){var t,e,i=k(this);i&&i.attr("href")&&"#"!=i.attr("href")&&(e=(t=i.parent("li")).clone(),t.removeClass("local-scroll"),i.removeAttr("data-ls_linkto"),e.removeClass("menu-item-has-children"),e.find("ul, .wpex-open-submenu").remove().end().prependTo(i.next("ul")))});r.find(".menu-item-has-children").children("a").append('');e=k(".menu-item-has-children > a",r);function l(t){(wpexLocalize.animateMobileToggle?r.stop(!0,!0).slideUp("fast"):r).removeClass("visible"),r.find("li.active > ul").stop(!0,!0).slideUp("fast"),r.find(".active").removeClass("active"),t.removeClass("wpex-active")}e.on("click",function(t){var e,i=k(this).parent("li");return i.hasClass("active")?(i.removeClass("active"),i.find("li").removeClass("active"),i.find("ul").stop(!0,!0).slideUp("fast")):(e=i.parents("li"),k(".menu-item-has-children",r).not(e).removeClass("active").children("ul").stop(!0,!0).slideUp("fast"),i.addClass("active").children("ul").stop(!0,!0).slideDown("fast")),!1}),a.on("click",function(t){var e;return r.hasClass("visible")?l(k(this)):(e=k(this),(wpexLocalize.animateMobileToggle?r.stop(!0,!0).slideDown("fast"):r).addClass("visible"),e.addClass("wpex-active")),!1}),t.config.$window.resize(function(){t.config.viewportWidth>=t.config.mobileMenuBreakpoint&&r.hasClass("visible")&&l(a)}),n.length&&(r.append(''),k(".mobile-toggle-nav-search").append(n))},mobileMenuFullScreen:function(){var e=this,t=wpexLocalize.fullScreenMobileMenuStyle||!1,i=k("#mobile-menu-search"),o="",t=(e.config.$body.append('
×
'),k(".full-screen-overlay-nav-ul")),n=(k("#mobile-menu-alternative").length?(o=k("#mobile-menu-alternative .dropdown-menu").html(),k("#mobile-menu-alternative").remove()):o=k("#site-navigation .dropdown-menu").html(),t.html(o),k(".full-screen-overlay-nav"));k(".full-screen-overlay-nav, .full-screen-overlay-nav *").children().each(function(){k(this).removeAttr("style")});n.find("li.menu-item-has-children > a").each(function(){var t,e,i=k(this);i&&i.attr("href")&&"#"!=i.attr("href")&&(e=(t=i.parent("li")).clone(),t.removeClass("local-scroll"),i.removeAttr("data-ls_linkto"),e.removeClass("menu-item-has-children"),e.find("ul").remove().end().prependTo(i.next("ul")))}),n.find("li.menu-item-has-children > a").on("click",function(t){var e,i=k(this).parent("li");return i.hasClass("wpex-active")?(i.removeClass("wpex-active"),i.find("li").removeClass("wpex-active"),i.find("ul").stop(!0,!0).slideUp("fast")):(e=i.parents("li"),n.find(".menu-item-has-children").not(e).removeClass("wpex-active").children("ul").stop(!0,!0).slideUp("fast"),i.addClass("wpex-active").children("ul").stop(!0,!0).slideDown({duration:"normal",easing:"easeInQuad"})),!1}),k(".mobile-menu-toggle").on("click",function(){return n.addClass("visible"),e.config.$body.addClass("wpex-noscroll"),!1}),k(".local-scroll > a",n).click(function(){var t=this.hash;if(-1 ul").stop(!0,!0).slideUp("fast"),n.find(".wpex-active").removeClass("wpex-active"),e.config.$body.removeClass("wpex-noscroll"),!1}),i.length&&(t.append(i),k("#mobile-menu-search").wrap(''))},navNoClick:function(){k("li.nav-no-click > a, li.sidr-class-nav-no-click > a").on("click",function(){return!1})},menuSearch:function(){var i,o,n,e="",t=k(".header-searchform-wrap");t.length&&(t.data("placeholder")&&t.find('input[type="search"]').attr("placeholder",t.data("placeholder")),t.data("disable-autocomplete")&&t.find('input[type="search"]').attr("autocomplete","off")),"drop_down"==wpexLocalize.menuSearchStyle?(e=k("a.search-dropdown-toggle, a.mobile-menu-search"),i=k("#searchform-dropdown"),e.click(function(t){i.toggleClass("show"),k(this).parent("li").toggleClass("active");var e=i.css("transition-duration");return(e=1e3*e.replace("s",""))&&setTimeout(function(){i.find('input[type="search"]').focus()},e),k("div#current-shop-items-dropdown").removeClass("show"),k("li.wcmenucart-toggle-dropdown").removeClass("active"),!1}),this.config.$document.on("click",function(t){k(t.target).closest("#searchform-dropdown.show").length||(e.parent("li").removeClass("active"),i.removeClass("show"))})):"overlay"==wpexLocalize.menuSearchStyle?(e=k("a.search-overlay-toggle, a.mobile-menu-search, li.search-overlay-toggle > a"),t=(o=k("#wpex-searchform-overlay")).find(".wpex-inner"),e.on("click",function(t){var e;return o.toggleClass("active"),o.find('input[type="search"]').val(""),o.hasClass("active")&&(e=1e3*(e=o.css("transition-duration")).replace("s",""),setTimeout(function(){o.find('input[type="search"]').focus()},e)),!1}),t.click(function(t){t.stopPropagation()}),o.click(function(){o.removeClass("active")})):"header_replace"==wpexLocalize.menuSearchStyle&&(e=k("a.search-header-replace-toggle, a.mobile-menu-search"),n=k("#searchform-header-replace"),e.click(function(t){n.toggleClass("show");var e=n.css("transition-duration");return(e=1e3*e.replace("s",""))&&setTimeout(function(){n.find('input[type="search"]').focus()},e),!1}),k("#searchform-header-replace-close").click(function(){return n.removeClass("show"),!1}),this.config.$document.on("click",function(t){k(t.target).closest(k("#searchform-header-replace.show")).length||n.removeClass("show")}))},headerCart:function(){var t,e,i,o;k("a.wcmenucart").hasClass("go-to-shop")||(t=k(".toggle-cart-widget, li.toggle-header-cart > a")).length&&("drop_down"==wpexLocalize.wooCartStyle?(e=k("div#current-shop-items-dropdown")).length&&(t.click(function(){return k("#searchform-dropdown").removeClass("show"),k("a.search-dropdown-toggle").parent("li").removeClass("active"),e.toggleClass("show"),k(this).toggleClass("active"),!1}),e.click(function(t){t.stopPropagation()}),this.config.$document.click(function(){e.removeClass("show"),t.removeClass("active")})):"overlay"==wpexLocalize.wooCartStyle&&(o=(i=k("#wpex-cart-overlay")).find(".wpex-inner"),t.on("click",function(t){return i.toggleClass("active"),!1}),o.click(function(t){t.stopPropagation()}),i.click(function(){i.removeClass("active")})))},headerOverlayOffset:function(){var t,e,i,o=k(".add-overlay-header-offset");o.length&&(e=(t=this).config.siteHeaderHeight)&&(i=k('
'),o.prepend(i),t.config.$window.resize(function(){i.css("height",t.config.siteHeaderHeight)}))},cartDropdownRelocate:function(){var t,e,i,o;this.config.hasHeaderOverlay||!this.config.$siteHeader||!this.config.$siteHeader.hasClass("wpex-reposition-cart-search-drops")||(t=k(".dropdown-menu > li:nth-last-child(1)",this.config.$siteNav)).length&&(e=k("#current-shop-items-dropdown"),i=t.position(),o="",e.length&&(o=wpexLocalize.isRTL?i.left:i.left-e.outerWidth()+t.width(),e.css({right:"auto",left:o})))},hideEditLink:function(){k("a.hide-post-edit",k("#content")).click(function(){return k("div.post-edit").hide(),!1})},menuWidgetAccordion:function(){wpexLocalize.menuWidgetAccordion&&(k("#sidebar .widget_nav_menu .current-menu-ancestor, .widget_nav_menu_accordion .widget_nav_menu .current-menu-ancestor",this.config.$siteMain).addClass("active").children("ul").show(),k("#sidebar .widget_nav_menu, .widget_nav_menu_accordion .widget_nav_menu",this.config.$siteMain).each(function(){var o=k(this).find(".menu-item-has-children");o.each(function(){k(this).addClass("parent"),k(this).children("a").on("click",function(t){var e=k(this).parent("li"),i=e.parents("li");return e.hasClass("active")?e.removeClass("active").children(".sub-menu").stop(!0,!0).slideUp("fast"):(o.not(i).removeClass("active").children(".sub-menu").slideUp("fast"),e.addClass("active").children(".sub-menu").stop(!0,!0).slideDown("fast")),!1})})}))},inlineHeaderLogo:function(){var t,e,i,o;"five"==this.config.siteHeaderStyle&&(t=k("#site-header-inner > .header-five-logo",this.config.$siteHeader),i=(e=k(".navbar-style-five",this.config.$siteHeader)).children("#site-navigation").children("ul").children("li").size(),i=Math.round(i/2)-parseInt(wpexLocalize.headerFiveSplitOffset),o=k(".menu-item-logo .header-five-logo"),this.config.viewportWidth>this.config.mobileMenuBreakpoint&&t.length&&e.length&&(k('').insertAfter(e.find("#site-navigation > ul > li:nth( "+i+" )")),t.appendTo(e.find(".menu-item-logo"))),this.config.viewportWidtht?o.addClass("show"):o.removeClass("show")}),o.on("click",function(t){return k("html, body").stop(!0,!0).animate({scrollTop:0},e,i.config.localScrollEasing),!1}))},smoothCommentScroll:function(){var o=this;k(".single li.comment-scroll a").click(function(t){var e=k("#comments"),i=e.offset().top-o.config.localScrollOffset-20;return o.scrollTo(e,i),!1})},tipsyTooltips:function(){k("a.tooltip-left").tipsy({fade:!0,gravity:"e"}),k("a.tooltip-right").tipsy({fade:!0,gravity:"w"}),k("a.tooltip-up").tipsy({fade:!0,gravity:"s"}),k("a.tooltip-down").tipsy({fade:!0,gravity:"n"})},responsiveText:function(){var s=this;k(".wpex-responsive-txt").each(function(){var t=k(this),e=t.width(),i=t.data(),o=s.parseData(i.minFontSize,13),n=s.parseData(i.maxFontSize,40),e=e/s.parseData(i.responsiveTextRatio,10);t.css("font-size",(n a"),o=k("#toggle-bar-wrap");i.length&&o.length&&(i.on("click",function(t){var e=k(".toggle-bar-btn").find(".fa");return e.length&&(e.toggleClass(i.data("icon")),e.toggleClass(i.data("icon-hover"))),o.toggleClass("active-bar"),!1}),this.config.$document.on("click",function(t){k(t.target).closest("#toggle-bar-wrap.active-bar").length||(o.removeClass("active-bar"),(t=i.children(".fa")).length&&t.removeClass(i.data("icon-hover")).addClass(i.data("icon")))}))},skillbar:function(t){void 0!==k.fn.appear&&k(".vcex-skillbar",t).each(function(){var t=k(this);t.appear(function(){t.find(".vcex-skillbar-bar").animate({width:k(this).attr("data-percent")},800)})},{accX:0,accY:0})},milestone:function(r){"function"==typeof CountUp&&void 0!==k.fn.appear&&k(".vcex-countup",r).each(function(){var t=k(this),e=t.data("options"),i=e.startVal,o=e.endVal,n=e.decimals,s=e.duration,e={useEasing:!0,useGrouping:!0,separator:e.separator,decimal:e.decimal,prefix:"",suffix:""},a=new CountUp(this,i,o,n,s,e);r?a.start():t.appear(function(){a.start()})})},twentytwenty:function(t){void 0!==k.fn.twentytwenty&&void 0!==k.fn.imagesLoaded&&k(".vcex-image-ba",t).each(function(){var t=k(this);t.imagesLoaded(function(){t.twentytwenty(t.data("options"))})})},countdown:function(t){void 0!==k.fn.countdown&&k(".vcex-countdown",t).each(function(){var e=k(this),t=e.data("countdown"),i=e.data("days"),o=e.data("hours"),n=e.data("minutes"),s=e.data("seconds"),a=e.data("timezone");(t=a&&void 0!==moment.tz&&k.isFunction(moment.tz)?moment.tz(t,a).toDate():t)&&e.countdown(t,function(t){e.html(t.strftime('
%-D '+i+'
%-H '+o+'
%-M '+n+'
%-S '+s+"
"))})})},typedText:function(t){"function"==typeof Typed&&void 0!==k.fn.appear&&k(".vcex-typed-text",t).each(function(){var t=k(this),e=t.data("settings");t.appear(function(){e.typeSpeed=parseInt(e.typeSpeed),e.backDelay=parseInt(e.backDelay),e.backSpeed=parseInt(e.backSpeed),e.startDelay=parseInt(e.startDelay),e.strings=t.data("strings");new Typed(this,e)})})},parallax:function(t){k(".wpex-parallax-bg",t).each(function(){var t=k(this);t.scrolly2().trigger("scroll"),t.css({opacity:1})})},parseLocalScrollOffset:function(t){var e=this,i=0;if(wpexLocalize.localScrollOffset)return wpexLocalize.localScrollOffset;wpexLocalize.localScrollExtraOffset&&(i+=parseInt(wpexLocalize.localScrollExtraOffset)),k("#wpadminbar").is(":visible")&&(i=parseInt(i)+parseInt(k("#wpadminbar").outerHeight())),"fixed_top"==e.config.mobileMenuToggleStyle&&(o=k("#wpex-mobile-menu-fixed-top")).length&&o.is(":visible")&&(i=parseInt(i)+parseInt(o.outerHeight())),e.config.hasStickyTopBar&&(i=parseInt(i)+parseInt(e.config.$stickyTopBar.outerHeight())),e.config.hasStickyHeader&&(!e.config.hasStickyMobileHeader&&e.config.windowWidth<=wpexLocalize.stickyHeaderBreakPoint?i=parseInt(i)+0:e.config.$siteHeader.hasClass("shrink-sticky-header")?"init"!=t&&!e.config.$siteHeader.is(":visible")||(i=parseInt(i)+parseInt(wpexLocalize.shrinkHeaderHeight)):i=parseInt(i)+parseInt(e.config.siteHeaderHeight)),e.config.hasStickyNavbar&&e.config.viewportWidth>=wpexLocalize.stickyNavbarBreakPoint&&(i=parseInt(i)+parseInt(e.config.$siteNavWrap.outerHeight()));var o=k(".vcex-navbar-sticky");return i=(i=o.length?parseInt(i)+parseInt(o.outerHeight()):i)?i-1:0},scrollTo:function(t,e,i){var o,n,s,a,r,l,c;t&&(o=null,n=k("html, body"),s=!1,(l=k('[data-ls_id="'+t+'"]')).length?(o=l,s=!0):o="string"==typeof t?k(t):t,o.length&&(a=this.config.localScrollSpeed?parseInt(this.config.localScrollSpeed):1e3,r=this.config.localScrollOffset,l=this.config.localScrollEasing,e=e||o.offset().top-r,t&&s&&wpexLocalize.localScrollUpdateHash&&(window.location.hash=t),(c=k(".mobile-toggle-nav")).hasClass("visible")?(k("a.mobile-menu-toggle, li.mobile-menu-toggle > a").removeClass("wpex-active"),wpexLocalize.animateMobileToggle?c.slideUp("fast",function(){c.removeClass("visible"),n.stop(!0,!0).animate({scrollTop:o.offset().top-r},a)}):(c.hide().removeClass("visible"),n.stop(!0,!0).animate({scrollTop:o.offset().top-r},a))):n.stop(!0,!0).animate({scrollTop:e},a,l)))},scrollToHash:function(t){var e=location.hash,i="",o="";e&&("#view_comments"==e||"#comments_reply"==e?(o=(i=k("#comments")).offset().top-t.config.localScrollOffset-20,i.length&&t.scrollTo(i,o)):t.config.hasStickyHeader&&-1!=e.indexOf("comment-")?(o=(i=k(e)).offset().top-t.config.localScrollOffset-20,t.scrollTo(i,o)):-1!=e.indexOf("localscroll-")?t.scrollTo(e.replace("localscroll-","")):k('[data-ls_id="'+e+'"]').length&&t.scrollTo(e))},localScrollSections:function(){this.config.$siteNav&&(t=k("a",this.config.$siteNav),e=location,i=e.href,i=e.hash?i.substr(0,i.indexOf("#")):i,t.each(function(){var t=k(this),e=t.attr("href");e&&-1!=e.indexOf("localscroll-")&&(t.parent("li").addClass("local-scroll"),e.substr(0,e.indexOf("#"))==i&&(e=e.substring(e.indexOf("#")+1).replace("localscroll-",""),t.attr("data-ls_linkto","#"+e)))}));for(var t,e,i,o=[],n=k(this.config.$localScrollTargets),s=0;s=o.width()?e.hasClass("position-absolute")&&(e.removeClass("position-absolute"),e.addClass("position-under-title")):(e.removeClass("position-under-title"),e.addClass("position-absolute"))}this.config.$body.hasClass("has-breadcrumbs")&&(t=k(".page-header"),(e=k(".site-breadcrumbs.position-absolute",t)).length&&e.hasClass("has-js-fix")&&((i=k(".breadcrumb-trail",e)).length&&(o=k(".page-header-inner",t)).length&&(n=k(".page-header-title > span",o)).length&&(s(),this.config.$window.resize(function(){s()}))))},customSelects:function(t){k(wpexLocalize.customSelects,t).each(function(){var t,e=k(this),i=e.attr("id"),i=i?" wpex-"+i:"";e.is(":visible")&&((t=k("
")).insertBefore(e),t.append(e),e.attr("multiple")?t.attr("class","wpex-multiselect-wrap"+i):t.attr("class","wpex-select-wrap"+i))}),k(".wpex-select-wrap",t).append(''),void 0!==k.fn.select2&&k("#calc_shipping_country").select2()},fadeIn:function(){k(".fade-in-image, .wpex-show-on-load").addClass("no-opacity")},wpexOwlCarousel:function(t){void 0!==k.fn.wpexOwlCarousel&&void 0!==k.fn.imagesLoaded&&k(".wpex-carousel",t).each(function(){var t=k(this),e=t.data();t.imagesLoaded(function(){t.wpexOwlCarousel({animateIn:!1,animateOut:!1,lazyLoad:!1,smartSpeed:e.smartSpeed||wpexLocalize.carouselSpeed,rtl:!!wpexLocalize.isRTL,dots:e.dots,nav:e.nav,items:e.items,slideBy:e.slideby,center:e.center,loop:e.loop,margin:e.margin,autoplay:e.autoplay,autoplayTimeout:e.autoplayTimeout,autoHeight:e.autoHeight,autoWidth:e.autoWidth,autoplayHoverPause:!0,navText:['',''],responsive:{0:{items:e.itemsMobilePortrait},480:{items:e.itemsMobileLandscape},768:{items:e.itemsTablet},960:{items:e.items}}})})})},sliderPro:function(t){var l=this;void 0!==k.fn.sliderPro&&(k(".wpex-slider",t).each(function(){var e=k(this),t=e.data(),i=e.find(".sp-slide"),o=(e.find(".wpex-slider-slide, .wpex-slider-thumbnails.sp-thumbnails").css({opacity:1,display:"block"}),l.parseData(t.autoHeight,!0)),n=e.prev(".wpex-slider-preloaderimg"),n=n.length&&o?n.outerHeight():null,s=l.parseData(t.heightAnimationDuration,600),a=l.parseData(t.loop,!1),r=l.parseData(t.autoPlay,!0);!o&&i.length&&(n=l.getTallestEl(i).height()),e.sliderPro({aspectRatio:-1,width:"100%",height:n,responsive:!0,fade:l.parseData(t.fade,600),touchSwipe:l.parseData(t.touchSwipe,!0),fadeDuration:l.parseData(t.animationSpeed,600),slideAnimationDuration:l.parseData(t.animationSpeed,600),autoHeight:o,heightAnimationDuration:parseInt(s),arrows:l.parseData(t.arrows,!0),fadeArrows:l.parseData(t.fadeArrows,!0),autoplay:r,autoplayDelay:l.parseData(t.autoPlayDelay,5e3),buttons:l.parseData(t.buttons,!0),shuffle:l.parseData(t.shuffle,!1),orientation:l.parseData(t.direction,"horizontal"),loop:a,keyboard:!1,fullScreen:l.parseData(t.fullscreen,!1),slideDistance:l.parseData(t.slideDistance,0),thumbnailsPosition:"bottom",thumbnailHeight:l.parseData(t.thumbnailHeight,70),thumbnailWidth:l.parseData(t.thumbnailWidth,70),thumbnailPointer:l.parseData(t.thumbnailPointer,!1),updateHash:l.parseData(t.updateHash,!1),thumbnailArrows:!1,fadeThumbnailArrows:!1,thumbnailTouchSwipe:!0,fadeCaption:l.parseData(t.fadeCaption,!0),captionFadeDuration:600,waitForLayers:!0,autoScaleLayers:!0,forceSize:"none",reachVideoAction:l.parseData(t.reachVideoAction,"playVideo"),leaveVideoAction:l.parseData(t.leaveVideoAction,"pauseVideo"),endVideoAction:l.parseData(t.leaveVideoAction,"nextSlide"),fadeOutPreviousSlide:!0,autoplayOnHover:l.parseData(t.autoplayOnHover,"pause"),init:function(t){e.prev(".wpex-slider-preloaderimg").remove()},gotoSlide:function(t){!a&&r&&t.index===e.find(".sp-slide").length-1&&e.data("sliderPro").stopAutoplay()}})}),k(".woo-product-entry-slider").click(function(){return!1}),void 0!==k.fn.imagesLoaded&&k(".wpex-slider-thumbnails.sp-nc-thumbnails",t).each(function(){var t=k(this);t.imagesLoaded(function(){t.css({opacity:1,display:"block"})})}))},isotopeGrids:function(t){var e,r,l=this;function d(i){var t=window.wpexAnimsition.filter_attr,o=i.attr(t),e=t.split(",");return 1!=e.length?(o=[],t="",e.forEach(function(t){var e=i.attr(t);null!=e&&(window.wpexAnimsition.use_attr_filter?"all"==e?o.push("["+t+"]"):o.push("["+t+("s"==t[t.length-1]?"*":"")+'="'+e+'"]'):o.push(e))}),o=window.wpexAnimsition.use_attr_filter?o.join("],["):o.join(",")):window.wpexAnimsition.use_attr_filter&&(o="all"==o?"["+t+"]":"["+t+("s"==t[t.length-1]?"*":"")+'="'+o+'"]'),o=null!=i.data("count_limit")?o+":nth-child(-n+"+i.data("count_limit")+")":o}void 0!==k.fn.imagesLoaded&&void 0!==k.fn.isotope&&(e=k(window.wpexAnimsition.linkElement).parents(window.wpexAnimsition.container_block),r=window.wpexAnimsition.container_block.split(","),null==window.already_changes&&(window.already_changes=r.map(function(){return!1})),k(e).each(function(t,e){var i,o,n,s,a,h=k(e);null!=r[t]&&(0!=k(r[t]).parents(window.wpexAnimsition.need_fix_containers).length?(window.already_changes[t]||(n=h.parent().find(window.wpexAnimsition.filter_bar),s=n.find(window.wpexAnimsition.filter_option),i=[],s.each(function(t,l){var e=d(k(l)),c=k("
");e.split(",").forEach(function(t){var e,i,o,n="",s=!1,a=-1,r=("["==t[0]?(-1!=t.search("=")?((e=(e=t.slice(1,-1).split("=")).map(function(t){return t.match(/[^"^']+/)[0]}))[0]=e[0].replace("*",""),c.attr(e[0],e[1])):(s=!0,e=[t.split(/\[|\]/)[1],"All"],k(l).attr(e[0],e[1]),c.attr(e[0],e[1]),(i=t.match(/:nth-child\(-n\+(\d+)\)/))&&2==i.length&&(a=i[1])),n=e[0]):"."==t[0]?(c.attr("class",t.slice(1)),n="class"):"#"==t[0]&&(c.attr("id",t.slice(1)),n="id"),h.parent().find(window.wpexAnimsition.linkElement).filter(t));0!=r.length&&(i=(i=window.wpexAnimsition.linkElement.split(/>| /).slice(0,-1).filter(function(t){return""!=t})).reverse(),o=null,i.forEach(function(t){o=(null==o?r:o).parents(t)}),c.append(o.eq(0).prop("outerHTML")),s?-1!=a&&(k(l).removeAttr("data-count_limit"),k(l).removeData("count_limit"),c.find(window.wpexAnimsition.linkElement).not(":lt("+a+")").remove(),c.find(window.wpexAnimsition.linkElement).removeAttr(n)):(c.find(window.wpexAnimsition.linkElement).remove(),r.removeAttr(n),r.appendTo(c.find("*").eq(-1))))}),i.push(c.prop("outerHTML"))}),k(e).before(i.join("")),a=window.wpexAnimsition.container_block.split(",").map(function(t){t=t.split(/>| /);return t.length<=1?"*":t[0]}).join(","),o=k(e).parents(a),k(e).remove(),(n=o.find(window.wpexAnimsition.filter_bar)).length&&(0!=(s=n.find(window.wpexAnimsition.filter_option)).length&&(a=d(s.eq(0)),s.each(function(){var t=d(k(this)),t=o.find(t).not(window.wpexAnimsition.filter_option);t.css("display","none"),t.find("> *").addClass("hidden_item"),t.find("> *").removeClass("active")}),(e=o.find(a).not(window.wpexAnimsition.filter_option)).css("display",""),e.find("> *").removeClass("hidden_item"),e.find("> *").eq(0).addClass("active"),e.find("> *").eq(0).css("display",""),e.find(window.wpexAnimsition.linkElement).css("display","")),s.click(function(){var t=d(k(this)),t=(s.each(function(){var t=d(k(this)),t=o.find(t).not(window.wpexAnimsition.filter_option);t.css("display","none"),t.find("> *").addClass("hidden_item"),t.find("> *").removeClass("active")}),o.find(t).not(window.wpexAnimsition.filter_option));return t.css("display",""),t.find("> *").removeClass("hidden_item"),t.find("> *").eq(0).addClass("active"),t.find("> *").eq(0).css("display",""),t.find(window.wpexAnimsition.linkElement).css("display",""),t.find(window.wpexAnimsition.children_text_block).css("height",""),!1}))),window.already_changes[t]=!0):h.imagesLoaded(function(){var t,e=h.parent().find(window.wpexAnimsition.filter_bar),i=(e.length&&(t="",0!=(e=e.find(window.wpexAnimsition.filter_option)).length&&(t=d(e.eq(0))),e.click(function(){var t=d(k(this));return i.isotope({filter:t}),l.equalHeights(),!1})),h.isotope({itemSelector:window.wpexAnimsition.linkElement,transformsEnabled:!0,isOriginLeft:!wpexLocalize.isRTL,transitionDuration:h.data("transition-duration")?h.data("transition-duration")+"s":"0.4s",layoutMode:h.data("layout-mode")?h.data("layout-mode"):"masonry",filter:t}))}))}))},customHovers:function(){var i="",a={};k(".wpex-hover-data").remove(),k("[data-wpex-hover]").each(function(t,e){var i=k(this),o=i.data("wpex-hover"),t="wpex-dhover-"+t,n="",s="",s=o.parent?(i.parents(o.parent).addClass(t+"-p"),i.addClass(t),"."+t+"-p:hover ."+t):(i.addClass(t),"."+t+":hover");k.each(o,function(t,e){if("target"==t)return!0;n+=t+":"+e+"!important;"}),n&&(n in a?a[n]=a[n]+","+s:a[n]=s)}),a&&k.each(a,function(t,e){i+=e+"{"+t+"}"}),i&&this.config.$head.append('")},responsiveCSS:function(){var i="",s={},a={};k(".wpex-vc-rcss").remove(),a.d="",a=k.extend(a,wpexLocalize.responsiveDataBreakpoints),k.each(a,function(t){s[t]=""}),k("[data-wpex-rcss]").each(function(t,e){var i=k(this),n="wpex-rcss-"+t,t=i.data("wpex-rcss");i.addClass(n),k.each(t,function(t,e){var i=e,o=t;k.each(a,function(t){i[t]&&(s[t]+="."+n+"{"+o+":"+i[t]+"!important;}")})})}),k.each(s,function(t,e){"d"==t?i+=e:e&&(i+="@media (max-width: "+a[t]+") { "+e+" }")}),i&&(i='",this.config.$head.append(i))},vcexFilterNav:function(t){void 0!==k.fn.imagesLoaded&&void 0!==k.fn.isotope&&k(".vcex-filter-nav",t).each(function(){var i,o=k(this),n=k("#"+o.data("filter-grid"));(n=n.hasClass("wpex-row")?n:n.find(".wpex-row")).length&&(n.removeClass("vcex-isotope-grid"),n.imagesLoaded(function(){i=n.hasClass("vcex-navbar-filter-grid")?n.isotope():(n.addClass("vcex-navbar-filter-grid"),(t=o.data("filter"))&&!o.find('[data-filter="'+t+'"]').length&&(t=""),n.isotope({itemSelector:".col",transformsEnabled:!0,isOriginLeft:!wpexLocalize.isRTL,transitionDuration:o.data("transition-duration")?o.data("transition-duration")+"s":"0.4s",layoutMode:o.data("layout-mode")?o.data("layout-mode"):"masonry",filter:t}));var t,e=o.find("a");e.click(function(){var t=k(this);return i.isotope({filter:k(this).attr("data-filter")}),e.removeClass("active"),t.addClass("active"),!1})}))})},archiveMasonryGrids:function(){var i;void 0!==k.fn.imagesLoaded&&void 0!==k.fn.isotope&&(i=this,k(".blog-masonry-grid,div.wpex-row.portfolio-masonry,div.wpex-row.portfolio-no-margins,div.wpex-row.staff-masonry,div.wpex-row.staff-no-margins").each(function(){var t=k(this),e=t.data();t.imagesLoaded(function(){t.isotope({itemSelector:".isotope-entry",transformsEnabled:!0,isOriginLeft:!wpexLocalize.isRTL,transitionDuration:i.parseData(e.transitionDuration,"0.0")+"s",layoutMode:i.parseData(e.layoutMode,"masonry")})})}))},autoLightbox:function(){var o,n;wpexLocalize.iLightbox.auto&&(o=this,n=["bmp","gif","jpeg","jpg","png","tiff","tif","jfif","jpe"],k(".wpb_text_column a:has(img), body.no-composer .entry a:has(img)").each(function(){var t=k(this),e=t.attr("href"),i=o.getUrlExtension(e);e&&-1!==n.indexOf(i)&&!t.parents(".woocommerce-product-gallery").length&&t.addClass("wpex-lightbox")}))},iLightbox:function(t){var n=this;n.iLightboxSettings=wpexLocalize.iLightbox,n.iLightboxSettings.show.speed=parseInt(n.iLightboxSettings.show.speed),n.iLightboxSettings.hide.speed=parseInt(n.iLightboxSettings.hide.speed),n.iLightboxSettings.effects.repositionSpeed=parseInt(n.iLightboxSettings.effects.repositionSpeed),n.iLightboxSettings.effects.switchSpeed=parseInt(n.iLightboxSettings.effects.switchSpeed),n.iLightboxSettings.effects.loadedFadeSpeed=parseInt(n.iLightboxSettings.effects.loadedFadeSpeed),n.iLightboxSettings.effects.fadeSpeed=parseInt(n.iLightboxSettings.effects.fadeSpeed),k(".lightbox-group, .wpex-lightbox-group",t).each(function(){var t=k(this),e=t.find(".wpex-lightbox-group-item"),i=t.data("ilightbox"),i=(i&&i.destroy(),e.removeClass("wpex-lightbox"),e.is("a")||(e=e.find("a")).removeClass("wpex-lightbox"),e.iLightBox(k.extend(!0,{},n.iLightboxSettings,{skin:n.parseData(t.data("skin"),wpexLocalize.iLightbox.skin),path:n.parseData(t.data("path"),wpexLocalize.iLightbox.path),infinite:n.parseData(t.data("infinite"),wpexLocalize.iLightbox.infinite),show:{title:n.parseData(t.data("show_title"),wpexLocalize.iLightbox.show.title)},controls:{arrows:n.parseData(t.data("arrows"),wpexLocalize.iLightbox.controls.arrows),thumbnail:n.parseData(t.data("thumbnails"),wpexLocalize.iLightbox.controls.thumbnail)}})));t.data("ilightbox",i)}),k(".wpex-lightbox",t).each(function(){var t,e=k(this);(e=e.is("a")?e:e.find("a")).hasClass("wpex-lightbox-group-item")||(t=e.iLightBox(k.extend(!0,{},n.iLightboxSettings,{skin:n.parseData(e.data("skin"),wpexLocalize.iLightbox.skin),show:{title:n.parseData(e.data("show_title"),wpexLocalize.iLightbox.show.title)},controls:{arrows:!1,thumbnail:!1,mousewheel:!1}})),e.data("ilightbox",t))}),k(".wpex-lightbox-gallery",t).on("click",function(t){var e=k(this),i=e.data("gallery"),o="";if(i)return o="string"==typeof i||i instanceof String?i.split(","):i,k.iLightBox(o,k.extend(!0,{},n.iLightboxSettings,{skin:n.parseData(e.data("skin"),wpexLocalize.iLightbox.skin),path:n.parseData(e.data("path"),wpexLocalize.iLightbox.path),infinite:n.parseData(e.data("skin"),wpexLocalize.iLightbox.infinite),controls:{arrows:n.parseData(e.data("arrows"),wpexLocalize.iLightbox.controls.arrows),thumbnail:n.parseData(e.data("thumbnails"),wpexLocalize.iLightbox.controls.thumbnail)}})),!1}),k(".wpex-lightbox-video, .wpb_single_image.video-lightbox a, .wpex-lightbox-autodetect, .wpex-lightbox-autodetect a",t).each(function(){var t=k(this),e=t.data();t.iLightBox({smartRecognition:!0,skin:n.parseData(e.skin,wpexLocalize.iLightbox.skin),path:"horizontal",controls:{fullscreen:wpexLocalize.iLightbox.controls.fullscreen},show:{title:n.parseData(e.show_title,wpexLocalize.iLightbox.show.title),speed:parseInt(wpexLocalize.iLightbox.show.speed)},hide:{speed:parseInt(wpexLocalize.iLightbox.hide.speed)},effects:{reposition:!0,repositionSpeed:200,switchSpeed:300,loadedFadeSpeed:wpexLocalize.iLightbox.effects.loadedFadeSpeed,fadeSpeed:wpexLocalize.iLightbox.effects.fadeSpeed},overlay:wpexLocalize.iLightbox.overlay,social:wpexLocalize.iLightbox.social})}),k(".wpex-carousel",t).on("click",".wpex-carousel-lightbox-item",function(t){t.preventDefault();var t=k(this),e=t.parents(".wpex-carousel"),e=(t.parents(".owl-item"),e.find(".owl-item")),i=t.data(),o=[];e.each(function(){var t;k(this).hasClass("cloned")||0<(t=k(this).find(".wpex-carousel-lightbox-item")).length&&o.push({URL:t.attr("href"),title:t.attr("data-title"),caption:t.attr("data-caption")})}),0 a").on("touchstart",function(t){var e=k(this),e=e.hasClass("overlay-parent")?e:e.parent(".overlay-parent");return!!e.hasClass("wpex-touched")||(e.addClass("wpex-touched"),k(".overlay-parent").not(e).removeClass("wpex-touched"),t.preventDefault(),!1)}),this.config.$document.on("touchstart",function(t){k(t.target).closest(".wpex-touched").length||k(".wpex-touched").removeClass("wpex-touched")})),k(".overlay-parent-title-push-up").each(function(){var t=k(this),e=t.find(".overlay-title-push-up"),i=t.find("a"),o=i.find("img"),n=e.outerHeight();t.imagesLoaded(function(){e.css({bottom:-n}),i.css({height:o.outerHeight()}),o.css({position:"absolute",top:"0",left:"0",width:"auto",height:"auto"}),t.hover(function(){o.css({top:-20}),e.css({bottom:0})},function(){o.css({top:"0"}),e.css({bottom:-n})})})})},stickyTopBar:function(){var e,t,i,o,n,s,a,r,l=this;function c(){return t=0,l.config.$wpAdminBar&&(t+=l.config.$wpAdminBar.outerHeight()),a.is(":visible")&&(t+=a.outerHeight()),t}function h(){e||(r.css("height",o.outerHeight()).removeClass("not-sticky").addClass("is-sticky"),o.css({top:c(),width:r.width()}),e=!0)}function d(){e&&(r.css("height","").removeClass("is-sticky").addClass("not-sticky"),o.css({width:"",top:""}),e=!1)}function p(){!n&&l.config.viewportWidtht&&h())}function f(){var t;!n&&l.config.viewportWidth=t?h:d)()))}l.config.hasStickyTopBar&&l.config.$stickyTopBar&&(e=!1,t=0,i=l.config.$window,o=l.config.$stickyTopBar,n=l.config.hasStickyTopBarMobile,s=wpexLocalize.stickyTopBarBreakPoint,a=k("#wpex-mobile-menu-fixed-top"),r=k('
'),o.wrapAll(r),r=k("#top-bar-wrap-sticky-wrapper"),p(),i.scroll(function(){f()}),i.resize(function(){!n&&l.config.viewportWidth=wpexLocalize.stickyTopBarBreakPoint)&&(t+=i.outerHeight()),e.is(":visible")&&(t+=e.outerHeight()),this.config.$wpAdminBar&&this.config.$wpAdminBar.is(":visible")&&(t+=this.config.$wpAdminBar.outerHeight()),wpexLocalize.addStickyHeaderOffset&&(t+=wpexLocalize.addStickyHeaderOffset),t},stickyHeaderCustomStartPoint:function(){var t=wpexLocalize.stickyHeaderStartPosition;return t=k.isNumeric(t)?t:k(t).length?k(t).offset().top:0},stickyHeader:function(){var e,t,i,o,n,s,a,r,l,c,h,d,p=this,f=!1,u=!1,g=!1;function m(){return p.config.viewportWidthi}function y(){return(r||o.offset().top)-p.stickyOffset()}function w(){d&&l&&(g=g?(l.attr("src",c),p.config.siteLogoHeight=p.config.$siteLogo.height(),!1):(l.attr("src",d),p.config.siteLogoHeight=p.config.$siteLogo.height(),!0))}function x(){var t=h;(t=m()?!(!a||"icon_buttons"!=p.config.mobileMenuToggleStyle&&"fixed_top"!=p.config.mobileMenuToggleStyle):t)&&v()?!u&&f&&(e.addClass("sticky-header-shrunk"),u=!0):(e.removeClass("sticky-header-shrunk"),u=!1)}function b(){f||(w(),o.css("height",t).removeClass("not-sticky").addClass("is-sticky"),e.removeClass("dyn-styles").css({top:p.stickyOffset(),width:o.width()}),e.hasClass("transform-prepare")&&e.addClass("transform-go"),f=!0)}function L(){f&&(r?(e.removeClass("transform-go"),u&&(e.removeClass("sticky-header-shrunk"),u=!1)):e.removeClass("transform-prepare"),w(),o.removeClass("is-sticky").addClass("not-sticky"),e.hasClass("shrink-sticky-header")||o.css("height",""),e.addClass("dyn-styles").css({width:"",top:""}).removeClass("transform-go"),f=!1,e.removeClass("sticky-header-shrunk"),u=!1)}function S(){!a&&m()||(p.config.windowTop>y()&&0!==p.config.windowTop&&b(),h&&x())}function C(){!a&&m()||(r&&(f&&e.addClass("transform-go"),0!==p.config.windowTop&&v()?e.addClass("transform-prepare"):e.removeClass("transform-prepare")),0===p.config.windowTop?L():((p.config.windowTop>=y()?b:L)(),h&&x()))}p.config.hasStickyHeader&&(e=p.config.$siteHeader,t=p.config.siteHeaderHeight,i=e.offset().top+e.outerHeight(),o=k('
'),e.wrapAll(o),o=k("#site-header-sticky-wrapper"),n=p.config.$window,s=wpexLocalize.stickyHeaderBreakPoint,a=p.config.hasStickyMobileHeader,r=p.stickyHeaderCustomStartPoint(),l=p.config.$siteLogo,c=p.config.siteLogoSrc,h="shrink"==p.stickyHeaderStyle||"shrink_animated"==p.stickyHeaderStyle,(d=(d=wpexLocalize.stickyheaderCustomLogo)&&wpexLocalize.stickyheaderCustomLogoRetina&&p.config.isRetina?wpexLocalize.stickyheaderCustomLogoRetina:d)&&k('').appendTo("body").css("display","none"),S(),n.scroll(function(){p.config.$hasScrolled&&C()}),n.resize(function(){(p.config.widthChanged||p.config.heightChanged)&&(!a&&m()?(L(),e.removeClass("transform-prepare")):f?(e.hasClass("shrink-sticky-header")||o.css("height",p.config.siteHeaderHeight),e.css({top:p.stickyOffset(),width:o.width()})):S(),h&&x())}),n.on("orientationchange",function(){L(),S()}))},stickyHeaderMenu:function(){var t,e,i,o,n,s=this;function a(){e||(o.css("height",s.config.$siteNavWrap.outerHeight()).removeClass("not-sticky").addClass("is-sticky"),t.css({top:s.stickyOffset(),width:o.width()}),s.config.$siteHeader.removeClass("dyn-styles"),e=!0)}function r(){e&&(o.css("height","").removeClass("is-sticky").addClass("not-sticky"),t.css({width:"",top:""}),s.config.$siteHeader.addClass("dyn-styles"),e=!1)}function l(){s.config.viewportWidth<=wpexLocalize.stickyNavbarBreakPoint||(s.config.windowTop>=n&&0!==s.config.windowTop?a:r)()}s.config.hasStickyNavbar&&(t=s.config.$siteNavWrap,e=!1,i=s.config.$window,k(t).index(),o=k(''),t.wrapAll(o),n=(o=k("#site-navigation-sticky-wrapper")).offset().top-s.stickyOffset(),l(),i.scroll(function(){!s.config.$hasScrolled||s.config.viewportWidth<=wpexLocalize.stickyNavbarBreakPoint||(0===s.config.windowTop?e&&r():(s.config.windowTop>=n?a:r)())}),i.resize(function(){s.config.viewportWidth<=wpexLocalize.stickyNavbarBreakPoint&&r(),e?t.css("width",o.width()):l()}),i.on("orientationchange",function(){r(),l()}))},stickyVcexNavbar:function(){var l=this,t=k(".vcex-navbar-sticky");t.length&&t.each(function(){var i=k(this),o=!1,t=l.config.$window,n=i.data("sticky-endpoint")?k(i.data("sticky-endpoint")):"",s=k('
');function a(){var t=0,e=k("#top-bar-wrap-sticky-wrapper"),i=k("#site-header-sticky-wrapper"),o=k("#site-navigation-sticky-wrapper"),n=k("#wpex-mobile-menu-fixed-top");return e.is(":visible")&&(l.config.hasStickyTopBarMobile||l.config.viewportWidth>=wpexLocalize.stickyTopBarBreakPoint)&&(t+=e.outerHeight()),i.is(":visible")&&(l.config.hasStickyMobileHeader||l.config.viewportWidth>=wpexLocalize.stickyHeaderBreakPoint)&&(l.config.$siteHeader.hasClass("shrink-sticky-header")?t+=parseInt(wpexLocalize.shrinkHeaderHeight):t+=i.outerHeight()),l.config.hasStickyNavbar&&o.is(":visible")&&(l.config.hasStickyMobileHeader||l.config.viewportWidth>=wpexLocalize.stickyNavbarBreakPoint)&&(t+=o.outerHeight()),n.is(":visible")&&(t+=n.outerHeight()),l.config.$wpAdminBar&&l.config.$wpAdminBar.is(":visible")&&(t+=l.config.$wpAdminBar.outerHeight()),t}function r(){o&&(s.css("height","").removeClass("is-sticky").addClass("not-sticky"),i.css({width:"",top:""}),o=!1)}function e(){var t=a(),e=s.offset().top;l.config.windowTop>e-t&&0!==l.config.windowTop?(e=t,!o&&i.is(":visible")&&(s.css("height",i.outerHeight()).removeClass("not-sticky").addClass("is-sticky"),i.css({top:e,width:s.width()}),o=!0),n.length&&n.is(":visible")&&(l.config.windowTop>n.offset().top-t-i.outerHeight()?s.addClass("sticky-hidden"):s.removeClass("sticky-hidden"))):r()}i.wrapAll(s),s=i.parent(".vcex-navbar-sticky-wrapper"),e(),t.scroll(function(){l.config.$hasScrolled&&e()}),t.resize(function(){e(),o?(i.is(":visible")||r(),s.css("height",i.outerHeight()),i.css({top:a(),width:s.width()})):e()}),t.on("orientationchange",function(t){r(),e()})})},infiniteScrollInit:function(){var i=this,o=k("#blog-entries");o.infinitescroll(wpexInfiniteScroll,function(t){var e=k(t).css("opacity",0);e.imagesLoaded(function(){o.hasClass("blog-masonry-grid")&&(o.isotope("appended",e),e.css("opacity",0)),"undefined"!=typeof retinajs&&k.isFunction(retinajs)&&retinajs(),e.animate({opacity:1}),o.trigger("wpexinfiniteScrollLoaded",[e]),i.sliderPro(e),i.iLightbox(e),void 0!==k.fn.wpexEqualHeights&&k(".blog-equal-heights").wpexEqualHeights({children:".blog-entry-inner"}),void 0!==k.fn.mediaelementplayer&&e.find("audio, video").mediaelementplayer()})})},loadMore:function(){var p=this,t=k(".wpex-load-more");t.length&&t.each(function(){var i=k(this),o=i.find(".theme-button-inner"),n=!1,s=wpexLocalize.loadMore.text,e=wpexLocalize.ajaxurl,a=wpexLocalize.loadMore.loadingText,r=wpexLocalize.loadMore.failedText,l=i.data("loadmore"),c=k(l.grid),h=2,d=(1!=l.maxPages&&i.addClass("wpex-visible"),l);i.on("click",function(){var t;n||(n=!0,i.addClass("loading"),o.text(a),t={action:"wpex_ajax_load_more",nonce:l.nonce,page:h,loadmore:d},k.post(e,t,function(t){var e;t.success?(h+=1,(e=k(t.data)).css("opacity",0),e.each(function(){var t=k(this);t.hasClass("sticky")&&t.addClass("wpex-duplicate")}),c.append(e).imagesLoaded(function(){void 0!==k.fn.wpexEqualHeights&&k(".blog-equal-heights").wpexEqualHeights({children:".blog-entry-inner"}),c.hasClass("blog-masonry-grid")&&c.isotope("appended",e),p.iLightbox(e),p.overlayHovers(e),c.trigger("wpexLoadMoreAddedHidden",[e]),e.css("opacity",1),"undefined"!=typeof retinajs&&k.isFunction(retinajs)&&retinajs(),p.sliderPro(e),void 0!==k.fn.mediaelementplayer&&e.find("audio, video").mediaelementplayer(),c.trigger("wpexLoadMoreAddedVisible",[e]),i.removeClass("loading"),o.text(s),h-1==l.maxPages&&i.hide(),n=!1})):(o.text(r),console.log(t))}).fail(function(t,e,i){console.log(t.responseText)}))})})},ctf7Preloader:function(){wpexLocalize.altercf7Prealoader&&k("form.wpcf7-form").each(function(){var t,e=k(this),i=e.find(".wpcf7-submit");i.length&&(e.find(".ajax-loader").remove(),t=k(''),i.after(t),i.on("click",function(){t.addClass("visible")}),k("div.wpcf7").on("wpcf7:invalid wpcf7:spam wpcf7:mailsent wpcf7:mailfailed",function(){t.removeClass("visible")}))})},vcTabsTogglesJS:function(){var i=this;function t(){var t=k(this);t.find(".wpex-slider").each(function(){k(this).sliderPro("update")}),t.find(".vcex-isotope-grid").each(function(){k(this).isotope("layout")}),t.find(".vcex-milestone").each(function(){i.milestone(k(this))})}this.config.$body.hasClass("wpb-js-composer")&&(k(".vc_tta-tabs").on("show.vc.tab",t),k(".vc_tta-accordion").on("show.vc.accordion",t),i.config.$document.on("click.vc.tabs.data-api","[data-vc-tabs]",function(t){var e;i.config.$body.hasClass("vc_editor")||(e=k(k(this).attr("href"))).length&&(e.find(".wpex-slider").each(function(){k(this).sliderPro("update")}),e.find(".vcex-isotope-grid").each(function(){k(this).isotope("layout")}))}))},vcAccessability:function(){var t,l;this.config.vcActive&&(k(".vc_toggle .vc_toggle_title").each(function(t){var e=k(this);e.attr("tabindex",0),e.on("keydown",function(t){13==t.which&&e.trigger("click")})}),t=k(".vc_tta-container"),l=function(t,e,i,o){e.attr("tabindex",-1),t.attr("tabindex",0).focus().click()},t.each(function(){var t=k(this),r=t.find(".vc_tta-tab > a");t.find(".vc_tta-panels");r.each(function(t){var e=k(this);0==t?e.attr("tabindex",0):e.attr("tabindex",-1),e.on("keydown",function(t){var e=k(this),i=t.which,o=!!e.parent().next().is("li.vc_tta-tab")&&e.parent().next().find("a"),n=!!e.parent().prev().is("li.vc_tta-tab")&&e.parent().prev().find("a"),s=e.parent().parent().find("li.vc_tta-tab:first").find("a"),a=e.parent().parent().find("li.vc_tta-tab:last").find("a");switch(i){case 37:case 38:t.preventDefault(),t.stopPropagation(),l(n||a,r);break;case 39:case 40:t.preventDefault(),t.stopPropagation(),l(o||s,r);break;case 36:t.preventDefault(),t.stopPropagation(),l(s,r);break;case 35:t.preventDefault(),t.stopPropagation(),l(a,r);break;case 13:case 32:t.preventDefault(),t.stopPropagation()}})})}))},vcexRemoveiFrameDups:function(t){var e,t=t.children(":first");t.length&&(e=t.find("> .wpex-bg-overlay-wrap"),t.hasClass("wpex-has-overlay")?e.not(":first").remove():e.length&&e.remove(),e=t.find("> .wpex-video-bg-wrap"),t.hasClass("wpex-has-video-bg")?e.not(":first").remove():e.length&&e.remove(),e=t.find("> .wpex-parallax-bg"),t.hasClass("wpex-parallax-bg-wrap")?e.not(":first").remove():e.length&&e.remove(),(e=t.find("> .wpex-video-bg-overlay")).length&&e.not(":first").remove())},vcPageEditable:function(){var e=this,i="";e.config.$body.hasClass("compose-mode")&&(parent.vc.events.on("shortcodes:add shortcodes:update shortcodes:clone",function(t){i=t.id}),e.config.$window.on("vc_reload",function(){var t;e.equalHeights(),e.sliderPro(),e.wpexOwlCarousel(),e.vcexFilterNav(),e.customHovers(),e.responsiveCSS(),i?(t=k("[data-model-id="+i+"]"),e.isotopeGrids(t),e.vcPageEditableFuncs(t),e.vcexRemoveiFrameDups(t)):e.isotopeGrids()}))},vcPageEditableFuncs:function(t){this.parallax(t),this.responsiveText(t),this.overlayHovers(t),this.iLightbox(t),t.hasClass("vc_vcex_skillbar")?this.skillbar(t):t.hasClass("vc_vc_wp_custommenu")?this.menuWidgetAccordion(t):t.hasClass("vc_vcex_form_shortcode")?this.customSelects(t):t.hasClass("vc_vcex_milestone")?this.milestone(t):t.hasClass("vc_vcex_image_ba")?this.twentytwenty(t):t.hasClass("vc_vcex_animated_text")?this.typedText(t):t.hasClass("vc_vcex_countdown")&&this.countdown(t)},wooGallery:function(){var t,e;function i(){e.each(function(){var t=k(this),e=k(this).find(".flex-direction-nav"),i=k(this).find(".flex-control-thumbs");e.length&&i.length&&((i=-(i.outerHeight()+e.find("a").outerHeight())/2)&&t.find(".flex-direction-nav a").css("margin-top",i))})}"undefined"!=typeof wc_single_product_params&&wc_single_product_params.flexslider.directionNav&&(t=this,(e=k(".woocommerce-product-gallery--with-images")).length&&(t.config.$window.on("load",function(){i()}),t.config.$window.resize(function(){(t.config.widthChanged||t.config.heightChanged)&&i()})))},parseData:function(t,e){return void 0!==t?t:e},getUrlExtension:function(t){var t=t.split(".").pop().toLowerCase(),e=-1!==t.indexOf("?")?t.split("?").pop():"";return(t=t.replace(e,"")).replace("?","")},scrolledToBottom:function(t){return this.config.windowTop>=t.offset().top+t.outerHeight()-window.innerHeight},isElementInWindowView:function(t){var e=this.config.$window.scrollTop(),i=e+this.config.windowHeight,o=k(t).offset().top;return o+k(t).height()<=i&&e<=o},getTallestEl:function(t){var e,i=1;return t.each(function(){var t=k(this);1==i?(e=t,i=0):e.height()
') + } + var sd = formate_datetime(v.start), + ed = formate_datetime(v.end), + duration = ''; + if(v.allDay){ + if (sd[0]!=ed[0]){ + duration = sd[0]+'>'+ed[0] +'
' + } + }else if (sd[0]==ed[0]){ + duration = sd[1]+'>'+ed[1] +'
' + }else{ + duration = sd[0]+' '+sd[1]+'>'+ed[0]+' '+ed[1] +'
' + } + tp.css('color',hexToRGB(v.color,0.45)) + tp.find('.event-content').html(v.note || read_more_text) + tp.find('.title_temp').html(v.title) + tp.find('.duration_temp').html(duration) + if (k==0){ + tp.addClass('active') + event_temp.find('.event-header .event-inner-title').html(v.title) + event_temp.find('.event-header .duration').html(duration) + } + event_temp.find('.event-containers').append(tp) + if(v.url_linked != ''){ + tp.attr('href',v.url_linked) + } + }) + if (active_flag){ + event_temp.addClass('active') + } + if (events[date] && events[date].length>1){ + var switch_button_wraper = $("
" + +"" + +"
") + switch_button_wraper.find('button').click(function(){ + if (!switching){ + var showing_event = $(this).parents('.event-wraper').find('.event-container-one.active') + var next_event + showing_event.css('position','') + showing_event.css('right','0') + showing_event.removeClass('active') + if ($(this).attr('for')=='prev'){ + next_event = showing_event.prev('.event-container-one') + if (next_event.length==0){ + next_event = $(this).parents('.event-wraper').find('.event-container-one').eq(-1) + } + next_event.addClass('active') + next_event.css('right','100%') + switching = true + next_event.animate({'right': '0%'},function(){ + $(this).css('right','') + if ($(this).find('.event-content').height()>$(this).height()){ + $(this).css('position','relative') + } + }) + showing_event.animate({'right': '-100%'},function(){ + switching = false + }) + }else{ + next_event = showing_event.next('.event-container-one') + if (next_event.length==0){ + next_event = $(this).parents('.event-wraper').find('.event-container-one').eq(0) + } + next_event.addClass('active') + next_event.css('right','-100%') + switching = true + next_event.animate({'right': '0%'},function(){ + $(this).css('right','') + if ($(this).find('.event-content').height()>$(this).height()){ + $(this).css('position','relative') + } + }) + showing_event.animate({'right': '100%'},function(){ + switching = false + }) + } + $(this).parents('.event').eq(0).find('.event-header .event-inner-title').html(next_event.find('.title_temp').html()) + $(this).parents('.event').eq(0).find('.event-header .duration').html(next_event.find('.duration_temp').html()) + } + }) + event_temp.find('.event-wraper').eq(0).append(switch_button_wraper) + } + event_div.append(event_temp) + } + event_div.html('') + set_event(date,true) + var all_event_in_table = $(ele).parents('table').eq(0).find('td.w-calendar-event') + var ele_index = all_event_in_table.index(ele) + var next_ele = all_event_in_table.eq(ele_index+1) + if (next_ele.length){ + set_event(next_ele.data('date-node'),false) + } + event_div.find('.has-dialog').click(function(){ + var tmp=$(this).find('.dialog_event').clone().dialog({dialogClass: 'calendar-dialog'}); + $('.ui-dialog button').blur(); + }) + function event_hover(){ + var event_doc = $(this).parents('.event').eq(0); + if (!event_doc.hasClass('active')){ + tp1 = event_doc.parents('.calendar-events').eq(0).find('.event.active .event-containers'); + tp2 = event_doc.find('.event-containers'); + if (!toggling){ + tp2.css('height','0'); + tp2.css('min-height','0'); + hover_step = hover_step_max; + }else{ + hover_step = hover_step_max - hover_step; + } + event_doc.addClass('active'); + function toggle_height(){ + tp1.css('height',(hover_step*hover_max_height/hover_step_max)+'em'); + tp2.css('height',(hover_max_height-hover_step*hover_max_height/hover_step_max)+'em'); + hover_step = hover_step-1; + if (hover_step>=0){ + setTimeout(toggle_height,50); + }else{ + tp1.css('min-height',''); + tp2.css('min-height',''); + tp1.css('height',''); + tp2.css('height',''); + toggling = false; + } + } + if (!toggling){ + setTimeout(toggle_height,50); + } + tp1.css('height',tp1.height()); + tp1.css('min-height','0'); + tp1.parents('.event').removeClass('active'); + toggling = true; + } + } + event_div.find('.event .event-header').hover(event_hover); + event_div.find('.event .event-header').click(event_hover); + $(ele).parents('div.w-calendar').css('display','flex'); + if ($(ele).parents('div.w-calendar').width()>=728 && $(window).width()>=768){ + event_div.css('width','50%') + event_div.addClass('width-50') + event_div.removeClass('width-100') + $(ele).parents('div.w-calendar').find('div').eq(0).css('width','50%') + }else{ + event_div.css('width','100%') + event_div.addClass('width-100') + event_div.removeClass('width-50') + $(ele).parents('div.w-calendar').find('div').eq(0).css('width','100%') + } + event_div.show() + } + var hide_event = function(ele){ + $(ele).parents('.w-calendar').find('td.shown').removeClass('shown') + var event_div = $(ele).parents('div.w-calendar').find('div.calendar-events') + $(ele).parents('div.w-calendar').css('display','block') + $(ele).parents('div.w-calendar').find('div').eq(0).css('width','') + event_div.hide() + //$(ele).parents('div.w-calendar').find('td.w-calendar-toggle').removeClass('w-calendar-toggle') + event_div.find('.event-container-one').remove() + } + var renderMonth = function(){ + var num_of_rows = getNumberOfRows(), + head_title = monthDom.find("h4 span.text"), + table_body = monthDom.find("table.table tbody"); + table_body.html(""); + + for(var i = 0; i < num_of_rows; i++){ + var tr = null; + if(i == 0){ + tr = makeRow("first"); + }else if(i == (num_of_rows - 1)){ + tr = makeRow("last"); + }else{ + tr = makeRow("middle"); + } + if(tr == null){ + break; + } + table_body.append(tr); + head_title.text(monthNames[firstDay.getMonth()] + " " + firstDay.getFullYear()); + } + } + + var getNumberOfRows = function() { + var day = 1, + sat_counter = 0, + sunday_counter = 0, + date = new Date(year, month, day); + + while(date.getMonth() === month) { + if(date.getDay() === 0) { + sunday_counter++; + }else if(date.getDay() === 6) { + sat_counter++; + } + day++; + date = new Date(year, month, day); + } + return (sunday_counter == 5 && sat_counter == 5 ? 6 : 5); + } + + var makeRow = function(position){ + if(last_inserted_date <= lastDay.getDate()){ + var row = $("
`s and ``s. +$table-cell-padding: 8px !default; +//** Padding for cells in `.table-condensed`. +$table-condensed-cell-padding: 5px !default; + +//** Default background color used for all tables. +$table-bg: transparent !default; +//** Background color used for `.table-striped`. +$table-bg-accent: #f9f9f9 !default; +//** Background color used for `.table-hover`. +$table-bg-hover: #f5f5f5 !default; +$table-bg-active: $table-bg-hover !default; + +//** Border color for table and cell borders. +$table-border-color: #ddd !default; + + +//== Buttons +// +//## For each of Bootstrap's buttons, define text, background and border color. + +$btn-font-weight: normal !default; + +$btn-default-color: #333 !default; +$btn-default-bg: #fff !default; +$btn-default-border: #ccc !default; + +$btn-primary-color: #fff !default; +$btn-primary-bg: $brand-primary !default; +$btn-primary-border: darken($btn-primary-bg, 5%) !default; + +$btn-success-color: #fff !default; +$btn-success-bg: $brand-success !default; +$btn-success-border: darken($btn-success-bg, 5%) !default; + +$btn-info-color: #fff !default; +$btn-info-bg: $brand-info !default; +$btn-info-border: darken($btn-info-bg, 5%) !default; + +$btn-warning-color: #fff !default; +$btn-warning-bg: $brand-warning !default; +$btn-warning-border: darken($btn-warning-bg, 5%) !default; + +$btn-danger-color: #fff !default; +$btn-danger-bg: $brand-danger !default; +$btn-danger-border: darken($btn-danger-bg, 5%) !default; + +$btn-link-disabled-color: $gray-light !default; + + +//== Forms +// +//## + +//** `` background color +$input-bg: #fff !default; +//** `` background color +$input-bg-disabled: $gray-lighter !default; + +//** Text color for ``s +$input-color: $gray !default; +//** `` border color +$input-border: #ccc !default; +//** `` border radius +$input-border-radius: $border-radius-base !default; +//** Border color for inputs on focus +$input-border-focus: #66afe9 !default; + +//** Placeholder text color +$input-color-placeholder: $gray-light !default; + +//** Default `.form-control` height +$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default; +//** Large `.form-control` height +$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default; +//** Small `.form-control` height +$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default; + +$legend-color: $gray-dark !default; +$legend-border-color: #e5e5e5 !default; + +//** Background color for textual input addons +$input-group-addon-bg: $gray-lighter !default; +//** Border color for textual input addons +$input-group-addon-border-color: $input-border !default; + + +//== Dropdowns +// +//## Dropdown menu container and contents. + +//** Background for the dropdown menu. +$dropdown-bg: #fff !default; +//** Dropdown menu `border-color`. +$dropdown-border: rgba(0,0,0,.15) !default; +//** Dropdown menu `border-color` **for IE8**. +$dropdown-fallback-border: #ccc !default; +//** Divider color for between dropdown items. +$dropdown-divider-bg: #e5e5e5 !default; + +//** Dropdown link text color. +$dropdown-link-color: $gray-dark !default; +//** Hover color for dropdown links. +$dropdown-link-hover-color: darken($gray-dark, 5%) !default; +//** Hover background for dropdown links. +$dropdown-link-hover-bg: #f5f5f5 !default; + +//** Active dropdown menu item text color. +$dropdown-link-active-color: $component-active-color !default; +//** Active dropdown menu item background color. +$dropdown-link-active-bg: $component-active-bg !default; + +//** Disabled dropdown menu item background color. +$dropdown-link-disabled-color: $gray-light !default; + +//** Text color for headers within dropdown menus. +$dropdown-header-color: $gray-light !default; + +// Note: Deprecated $dropdown-caret-color as of v3.1.0 +$dropdown-caret-color: #000 !default; + + +//-- Z-index master list +// +// Warning: Avoid customizing these values. They're used for a bird's eye view +// of components dependent on the z-axis and are designed to all work together. +// +// Note: These variables are not generated into the Customizer. + +$zindex-navbar: 1000 !default; +$zindex-dropdown: 1000 !default; +$zindex-popover: 1010 !default; +$zindex-tooltip: 1030 !default; +$zindex-navbar-fixed: 1030 !default; +$zindex-modal-background: 1040 !default; +$zindex-modal: 1050 !default; + + +//== Media queries breakpoints +// +//## Define the breakpoints at which your layout will change, adapting to different screen sizes. + +// Extra small screen / phone +// Note: Deprecated $screen-xs and $screen-phone as of v3.0.1 +$screen-xs: 480px !default; +$screen-xs-min: $screen-xs !default; +$screen-phone: $screen-xs-min !default; + +// Small screen / tablet +// Note: Deprecated $screen-sm and $screen-tablet as of v3.0.1 +$screen-sm: 768px !default; +$screen-sm-min: $screen-sm !default; +$screen-tablet: $screen-sm-min !default; + +// Medium screen / desktop +// Note: Deprecated $screen-md and $screen-desktop as of v3.0.1 +$screen-md: 992px !default; +$screen-md-min: $screen-md !default; +$screen-desktop: $screen-md-min !default; + +// Large screen / wide desktop +// Note: Deprecated $screen-lg and $screen-lg-desktop as of v3.0.1 +$screen-lg: 1200px !default; +$screen-lg-min: $screen-lg !default; +$screen-lg-desktop: $screen-lg-min !default; + +// So media queries don't overlap when required, provide a maximum +$screen-xs-max: ($screen-sm-min - 1) !default; +$screen-sm-max: ($screen-md-min - 1) !default; +$screen-md-max: ($screen-lg-min - 1) !default; + + +//== Grid system +// +//## Define your custom responsive grid. + +//** Number of columns in the grid. +$grid-columns: 12 !default; +//** Padding between columns. Gets divided in half for the left and right. +$grid-gutter-width: 30px !default; +// Navbar collapse +//** Point at which the navbar becomes uncollapsed. +$grid-float-breakpoint: $screen-sm-min !default; +//** Point at which the navbar begins collapsing. +$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default; + + +//== Container sizes +// +//## Define the maximum width of `.container` for different screen sizes. + +// Small screen / tablet +$container-tablet: ((720px + $grid-gutter-width)) !default; +//** For `$screen-sm-min` and up. +$container-sm: $container-tablet !default; + +// Medium screen / desktop +$container-desktop: ((940px + $grid-gutter-width)) !default; +//** For `$screen-md-min` and up. +$container-md: $container-desktop !default; + +// Large screen / wide desktop +$container-large-desktop: ((1140px + $grid-gutter-width)) !default; +//** For `$screen-lg-min` and up. +$container-lg: $container-large-desktop !default; + + +//== Navbar +// +//## + +// Basics of a navbar +$navbar-height: 50px !default; +$navbar-margin-bottom: $line-height-computed !default; +$navbar-border-radius: $border-radius-base !default; +$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default; +$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default; +$navbar-collapse-max-height: 340px !default; + +$navbar-default-color: #777 !default; +$navbar-default-bg: #f8f8f8 !default; +$navbar-default-border: darken($navbar-default-bg, 6.5%) !default; + +// Navbar links +$navbar-default-link-color: #777 !default; +$navbar-default-link-hover-color: #333 !default; +$navbar-default-link-hover-bg: transparent !default; +$navbar-default-link-active-color: #555 !default; +$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default; +$navbar-default-link-disabled-color: #ccc !default; +$navbar-default-link-disabled-bg: transparent !default; + +// Navbar brand label +$navbar-default-brand-color: $navbar-default-link-color !default; +$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default; +$navbar-default-brand-hover-bg: transparent !default; + +// Navbar toggle +$navbar-default-toggle-hover-bg: #ddd !default; +$navbar-default-toggle-icon-bar-bg: #888 !default; +$navbar-default-toggle-border-color: #ddd !default; + + +// Inverted navbar +// Reset inverted navbar basics +$navbar-inverse-color: $gray-light !default; +$navbar-inverse-bg: #222 !default; +$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default; + +// Inverted navbar links +$navbar-inverse-link-color: $gray-light !default; +$navbar-inverse-link-hover-color: #fff !default; +$navbar-inverse-link-hover-bg: transparent !default; +$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default; +$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default; +$navbar-inverse-link-disabled-color: #444 !default; +$navbar-inverse-link-disabled-bg: transparent !default; + +// Inverted navbar brand label +$navbar-inverse-brand-color: $navbar-inverse-link-color !default; +$navbar-inverse-brand-hover-color: #fff !default; +$navbar-inverse-brand-hover-bg: transparent !default; + +// Inverted navbar toggle +$navbar-inverse-toggle-hover-bg: #333 !default; +$navbar-inverse-toggle-icon-bar-bg: #fff !default; +$navbar-inverse-toggle-border-color: #333 !default; + + +//== Navs +// +//## + +//=== Shared nav styles +$nav-link-padding: 10px 15px !default; +$nav-link-hover-bg: $gray-lighter !default; + +$nav-disabled-link-color: $gray-light !default; +$nav-disabled-link-hover-color: $gray-light !default; + +$nav-open-link-hover-color: #fff !default; + +//== Tabs +$nav-tabs-border-color: #ddd !default; + +$nav-tabs-link-hover-border-color: $gray-lighter !default; + +$nav-tabs-active-link-hover-bg: $body-bg !default; +$nav-tabs-active-link-hover-color: $gray !default; +$nav-tabs-active-link-hover-border-color: #ddd !default; + +$nav-tabs-justified-link-border-color: #ddd !default; +$nav-tabs-justified-active-link-border-color: $body-bg !default; + +//== Pills +$nav-pills-border-radius: $border-radius-base !default; +$nav-pills-active-link-hover-bg: $component-active-bg !default; +$nav-pills-active-link-hover-color: $component-active-color !default; + + +//== Pagination +// +//## + +$pagination-color: $link-color !default; +$pagination-bg: #fff !default; +$pagination-border: #ddd !default; + +$pagination-hover-color: $link-hover-color !default; +$pagination-hover-bg: $gray-lighter !default; +$pagination-hover-border: #ddd !default; + +$pagination-active-color: #fff !default; +$pagination-active-bg: $brand-primary !default; +$pagination-active-border: $brand-primary !default; + +$pagination-disabled-color: $gray-light !default; +$pagination-disabled-bg: #fff !default; +$pagination-disabled-border: #ddd !default; + + +//== Pager +// +//## + +$pager-bg: $pagination-bg !default; +$pager-border: $pagination-border !default; +$pager-border-radius: 15px !default; + +$pager-hover-bg: $pagination-hover-bg !default; + +$pager-active-bg: $pagination-active-bg !default; +$pager-active-color: $pagination-active-color !default; + +$pager-disabled-color: $pagination-disabled-color !default; + + +//== Jumbotron +// +//## + +$jumbotron-padding: 30px !default; +$jumbotron-color: inherit !default; +$jumbotron-bg: $gray-lighter !default; +$jumbotron-heading-color: inherit !default; +$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default; + + +//== Form states and alerts +// +//## Define colors for form feedback states and, by default, alerts. + +$state-success-text: #3c763d !default; +$state-success-bg: #dff0d8 !default; +$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default; + +$state-info-text: #31708f !default; +$state-info-bg: #d9edf7 !default; +$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default; + +$state-warning-text: #8a6d3b !default; +$state-warning-bg: #fcf8e3 !default; +$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default; + +$state-danger-text: #a94442 !default; +$state-danger-bg: #f2dede !default; +$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default; + + +//== Tooltips +// +//## + +//** Tooltip max width +$tooltip-max-width: 200px !default; +//** Tooltip text color +$tooltip-color: #fff !default; +//** Tooltip background color +$tooltip-bg: #000 !default; +$tooltip-opacity: .9 !default; + +//** Tooltip arrow width +$tooltip-arrow-width: 5px !default; +//** Tooltip arrow color +$tooltip-arrow-color: $tooltip-bg !default; + + +//== Popovers +// +//## + +//** Popover body background color +$popover-bg: #fff !default; +//** Popover maximum width +$popover-max-width: 276px !default; +//** Popover border color +$popover-border-color: rgba(0,0,0,.2) !default; +//** Popover fallback border color +$popover-fallback-border-color: #ccc !default; + +//** Popover title background color +$popover-title-bg: darken($popover-bg, 3%) !default; + +//** Popover arrow width +$popover-arrow-width: 10px !default; +//** Popover arrow color +$popover-arrow-color: #fff !default; + +//** Popover outer arrow width +$popover-arrow-outer-width: ($popover-arrow-width + 1) !default; +//** Popover outer arrow color +$popover-arrow-outer-color: fadein($popover-border-color, 5%) !default; +//** Popover outer arrow fallback color +$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default; + + +//== Labels +// +//## + +//** Default label background color +$label-default-bg: $gray-light !default; +//** Primary label background color +$label-primary-bg: $brand-primary !default; +//** Success label background color +$label-success-bg: $brand-success !default; +//** Info label background color +$label-info-bg: $brand-info !default; +//** Warning label background color +$label-warning-bg: $brand-warning !default; +//** Danger label background color +$label-danger-bg: $brand-danger !default; + +//** Default label text color +$label-color: #fff !default; +//** Default text color of a linked label +$label-link-hover-color: #fff !default; + + +//== Modals +// +//## + +//** Padding applied to the modal body +$modal-inner-padding: 20px !default; + +//** Padding applied to the modal title +$modal-title-padding: 15px !default; +//** Modal title line-height +$modal-title-line-height: $line-height-base !default; + +//** Background color of modal content area +$modal-content-bg: #fff !default; +//** Modal content border color +$modal-content-border-color: rgba(0,0,0,.2) !default; +//** Modal content border color **for IE8** +$modal-content-fallback-border-color: #999 !default; + +//** Modal backdrop background color +$modal-backdrop-bg: #000 !default; +//** Modal backdrop opacity +$modal-backdrop-opacity: .5 !default; +//** Modal header border color +$modal-header-border-color: #e5e5e5 !default; +//** Modal footer border color +$modal-footer-border-color: $modal-header-border-color !default; + +$modal-lg: 900px !default; +$modal-md: 600px !default; +$modal-sm: 300px !default; + + +//== Alerts +// +//## Define alert colors, border radius, and padding. + +$alert-padding: 15px !default; +$alert-border-radius: $border-radius-base !default; +$alert-link-font-weight: bold !default; + +$alert-success-bg: $state-success-bg !default; +$alert-success-text: $state-success-text !default; +$alert-success-border: $state-success-border !default; + +$alert-info-bg: $state-info-bg !default; +$alert-info-text: $state-info-text !default; +$alert-info-border: $state-info-border !default; + +$alert-warning-bg: $state-warning-bg !default; +$alert-warning-text: $state-warning-text !default; +$alert-warning-border: $state-warning-border !default; + +$alert-danger-bg: $state-danger-bg !default; +$alert-danger-text: $state-danger-text !default; +$alert-danger-border: $state-danger-border !default; + + +//== Progress bars +// +//## + +//** Background color of the whole progress component +$progress-bg: #f5f5f5 !default; +//** Progress bar text color +$progress-bar-color: #fff !default; + +//** Default progress bar color +$progress-bar-bg: $brand-primary !default; +//** Success progress bar color +$progress-bar-success-bg: $brand-success !default; +//** Warning progress bar color +$progress-bar-warning-bg: $brand-warning !default; +//** Danger progress bar color +$progress-bar-danger-bg: $brand-danger !default; +//** Info progress bar color +$progress-bar-info-bg: $brand-info !default; + + +//== List group +// +//## + +//** Background color on `.list-group-item` +$list-group-bg: #fff !default; +//** `.list-group-item` border color +$list-group-border: #ddd !default; +//** List group border radius +$list-group-border-radius: $border-radius-base !default; + +//** Background color of single list elements on hover +$list-group-hover-bg: #f5f5f5 !default; +//** Text color of active list elements +$list-group-active-color: $component-active-color !default; +//** Background color of active list elements +$list-group-active-bg: $component-active-bg !default; +//** Border color of active list elements +$list-group-active-border: $list-group-active-bg !default; +$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default; + +$list-group-link-color: #555 !default; +$list-group-link-heading-color: #333 !default; + + +//== Panels +// +//## + +$panel-bg: #fff !default; +$panel-body-padding: 15px !default; +$panel-border-radius: $border-radius-base !default; + +//** Border color for elements within panels +$panel-inner-border: #ddd !default; +$panel-footer-bg: #f5f5f5 !default; + +$panel-default-text: $gray-dark !default; +$panel-default-border: #ddd !default; +$panel-default-heading-bg: #f5f5f5 !default; + +$panel-primary-text: #fff !default; +$panel-primary-border: $brand-primary !default; +$panel-primary-heading-bg: $brand-primary !default; + +$panel-success-text: $state-success-text !default; +$panel-success-border: $state-success-border !default; +$panel-success-heading-bg: $state-success-bg !default; + +$panel-info-text: $state-info-text !default; +$panel-info-border: $state-info-border !default; +$panel-info-heading-bg: $state-info-bg !default; + +$panel-warning-text: $state-warning-text !default; +$panel-warning-border: $state-warning-border !default; +$panel-warning-heading-bg: $state-warning-bg !default; + +$panel-danger-text: $state-danger-text !default; +$panel-danger-border: $state-danger-border !default; +$panel-danger-heading-bg: $state-danger-bg !default; + + +//== Thumbnails +// +//## + +//** Padding around the thumbnail image +$thumbnail-padding: 4px !default; +//** Thumbnail background color +$thumbnail-bg: $body-bg !default; +//** Thumbnail border color +$thumbnail-border: #ddd !default; +//** Thumbnail border radius +$thumbnail-border-radius: $border-radius-base !default; + +//** Custom text color for thumbnail captions +$thumbnail-caption-color: $text-color !default; +//** Padding around the thumbnail caption +$thumbnail-caption-padding: 9px !default; + + +//== Wells +// +//## + +$well-bg: #f5f5f5 !default; +$well-border: darken($well-bg, 7%) !default; + + +//== Badges +// +//## + +$badge-color: #fff !default; +//** Linked badge text color on hover +$badge-link-hover-color: #fff !default; +$badge-bg: $gray-light !default; + +//** Badge text color in active nav link +$badge-active-color: $link-color !default; +//** Badge background color in active nav link +$badge-active-bg: #fff !default; + +$badge-font-weight: bold !default; +$badge-line-height: 1 !default; +$badge-border-radius: 10px !default; + + +//== Breadcrumbs +// +//## + +$breadcrumb-padding-vertical: 8px !default; +$breadcrumb-padding-horizontal: 15px !default; +//** Breadcrumb background color +$breadcrumb-bg: #f5f5f5 !default; +//** Breadcrumb text color +$breadcrumb-color: #ccc !default; +//** Text color of current page in the breadcrumb +$breadcrumb-active-color: $gray-light !default; +//** Textual separator for between breadcrumb elements +$breadcrumb-separator: "/" !default; + + +//== Carousel +// +//## + +$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default; + +$carousel-control-color: #fff !default; +$carousel-control-width: 15% !default; +$carousel-control-opacity: .5 !default; +$carousel-control-font-size: 20px !default; + +$carousel-indicator-active-bg: #fff !default; +$carousel-indicator-border-color: #fff !default; + +$carousel-caption-color: #fff !default; + + +//== Close +// +//## + +$close-font-weight: bold !default; +$close-color: #000 !default; +$close-text-shadow: 0 1px 0 #fff !default; + + +//== Code +// +//## + +$code-color: #c7254e !default; +$code-bg: #f9f2f4 !default; + +$kbd-color: #fff !default; +$kbd-bg: #333 !default; + +$pre-bg: #f5f5f5 !default; +$pre-color: $gray-dark !default; +$pre-border-color: #ccc !default; +$pre-scrollable-max-height: 340px !default; + + +//== Type +// +//## + +//** Text muted color +$text-muted: $gray-light !default; +//** Abbreviations and acronyms border color +$abbr-border-color: $gray-light !default; +//** Headings small color +$headings-small-color: $gray-light !default; +//** Blockquote small color +$blockquote-small-color: $gray-light !default; +//** Blockquote font size +$blockquote-font-size: ($font-size-base * 1.25) !default; +//** Blockquote border color +$blockquote-border-color: $gray-lighter !default; +//** Page header border color +$page-header-border-color: $gray-lighter !default; + + +//== Miscellaneous +// +//## + +//** Horizontal line color. +$hr-border: $gray-lighter !default; + +//** Horizontal offset for forms and lists. +$component-offset-horizontal: 180px !default; diff --git a/app/assets/stylesheets/recruit_news/bootstrap/bootstrap.min.css b/app/assets/stylesheets/recruit_news/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..fc564e4 --- /dev/null +++ b/app/assets/stylesheets/recruit_news/bootstrap/bootstrap.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.3.5 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * //*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:0.0625em dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 2.5em}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 0.125em;border:0.0625em solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:0.0625em solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:0.0625em solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:0.0625em solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:0.0625em;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:0.625em;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.875em;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:0.375em}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:0.25em;line-height:1.42857143;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.25em;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:1.25em;margin-bottom:1.25em;border:0;border-top:0.0625em solid #eee}.sr-only{position:absolute;width:0.0625em;height:0.0625em;padding:0;margin:-0.0625em;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:1.25em;margin-bottom:0.625em}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:0.625em;margin-bottom:0.625em}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:2.250em}.h2,h2{font-size:1.875em}.h3,h3{font-size:1.500em}.h4,h4{font-size:1.125em}.h5,h5{font-size:0.875em}.h6,h6{font-size:0.750em}p{margin:0 0 0.625em}.lead{margin-bottom:1.25em;font-size:1em;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:1.313em}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:0.5625em;margin:2.5em 0 1.25em;border-bottom:0.0625em solid #eee}ol,ul{margin-top:0;margin-bottom:0.625em}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-0.3125em;list-style:none}.list-inline>li{display:inline-block;padding-right:0.3125em;padding-left:0.3125em}dl{margin-top:0;margin-bottom:1.25em}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:10em;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:11.25em}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:0.0625em dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0.625em 1.25em;margin:0 0 1.25em;font-size:1.094em;border-left:0.3125em solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:0.9375em;padding-left:0;text-align:right;border-right:0.3125em solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:1.25em;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:0.125em 0.25em;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0.25em}kbd{padding:0.125em 0.25em;font-size:90%;color:#fff;background-color:#333;border-radius:0.1875em;-webkit-box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.25);box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.0.3125em;margin:0 0 0.625em;font-size:0.813em;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:0.0625em solid #ccc;border-radius:0.25em}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:32.5em;overflow-y:scroll}.container{padding-right:0.9375em;padding-left:0.9375em;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:46.875em}}@media (min-width:990.125em){.container{width:60.625em}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:0.9375em;padding-left:0.9375em;margin-right:auto;margin-left:auto}.row{margin-right:-0.9375em;margin-left:-0.9375em}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:0.0625em;padding-right:0.9375em;padding-left:0.9375em}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:990.125em){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:0.5em;padding-bottom:0.5em;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:1.25em}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:0.5em;line-height:1.42857143;vertical-align:top;border-top:0.0625em solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:0.125em solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:0.125em solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:0.3125em}.table-bordered{border:0.0625em solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:0.0625em solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:0.125em}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:0.9375em;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:0.0625em solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:1.25em;font-size:1.313em;line-height:inherit;color:#333;border:0;border-bottom:0.0625em solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:0.3125em;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:0.25em 0 0;margin-top:0.0625em\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}output{display:block;padding-top:0.4375em;font-size:0.875em;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:30.25em;padding:0.375em 1.125em;font-size:0.875em;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:0.0625em solid #ccc;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.5em rgba(102,175,233,.6);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.5em rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:30.25em}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:1.875em}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:40.375em}}.form-group{margin-bottom:0.9375em}.checkbox,.radio{position:relative;display:block;margin-top:0.625em;margin-bottom:0.625em}.checkbox label,.radio label{min-height:1.25em;padding-left:1.25em;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:0.25em\9;margin-left:-1.25em}.checkbox+.checkbox,.radio+.radio{margin-top:-0.3125em}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:1.25em;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:0.625em}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:30.25em;padding-top:0.4375em;padding-bottom:0.4375em;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}select.input-sm{height:1.875em;line-height:1.875em}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.form-group-sm select.form-control{height:1.875em;line-height:1.875em}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:1.875em;min-height:30.125em;padding:0.375em 0.625em;font-size:0.750em;line-height:1.5}.input-lg{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}select.input-lg{height:40.375em;line-height:40.375em}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}.form-group-lg select.form-control{height:40.375em;line-height:40.375em}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:40.375em;min-height:2.375em;padding:10.0625em 10.375em;font-size:1.125em;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.0.3125em}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:30.25em;height:30.25em;line-height:30.25em;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:40.375em;height:40.375em;line-height:40.375em}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:1.875em;height:1.875em;line-height:1.875em}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #67b168;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #c0a16b;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #ce8483;box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.075),0 0 0.375em #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:20.3125em}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:0.3125em;margin-bottom:0.625em;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:0.4375em;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:1.6875em}.form-horizontal .form-group{margin-right:-0.9375em;margin-left:-0.9375em}@media (min-width:768px){.form-horizontal .control-label{padding-top:0.4375em;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:0.9375em}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:10.0625em;font-size:1.125em}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:0.375em;font-size:0.750em}}.btn{display:inline-block;padding:0.375em 1.125em;margin-bottom:0;font-size:0.875em;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:0.0625em solid transparent;border-radius:0.25em}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:0.3125em auto -webkit-focus-ring-color;outline-offset:-0.125em}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125);box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}.btn-group-sm>.btn,.btn-sm{padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.btn-group-xs>.btn,.btn-xs{padding:0.0625em 0.3125em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.3125em}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:0.125em;vertical-align:middle;border-top:0.25em dashed;border-top:0.25em solid\9;border-right:0.25em solid transparent;border-left:0.25em solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10em;padding:0.3125em 0;margin:0.125em 0 0;font-size:0.875em;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #ccc;border:0.0625em solid rgba(0,0,0,.15);border-radius:0.25em;-webkit-box-shadow:0 0.375em 1.125em rgba(0,0,0,.175);box-shadow:0 0.375em 1.125em rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:0.0625em;margin:0.5625em 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:0.1875em 1.25em;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:0.1875em 1.25em;font-size:0.750em;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:0.25em dashed;border-bottom:0.25em solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:0.125em}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-0.0625em}.btn-toolbar{margin-left:-0.3125em}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:0.3125em}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:0.5em;padding-left:0.5em}.btn-group>.btn-lg+.dropdown-toggle{padding-right:1.125em;padding-left:1.125em}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125);box-shadow:inset 0 0.1875em 0.3125em rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0.3125em 0.3125em 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0.3125em 0.3125em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-0.0625em;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0.25em;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:0.25em}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:40.375em;padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333;border-radius:0.375em}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:40.375em;line-height:40.375em}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:1.875em;padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5;border-radius:0.1875em}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:1.875em;line-height:1.875em}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:0.375em 1.125em;font-size:0.875em;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:0.0625em solid #ccc;border-radius:0.25em}.input-group-addon.input-sm{padding:0.3125em 0.625em;font-size:0.750em;border-radius:0.1875em}.input-group-addon.input-lg{padding:0.625em 10.375em;font-size:1.125em;border-radius:0.375em}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-0.0625em}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-0.0625em}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-0.0625em}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:0.625em 0.9375em}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:0.0625em;margin:0.5625em 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:0.0625em solid #ddd}.nav-tabs>li{float:left;margin-bottom:-0.0625em}.nav-tabs>li>a{margin-right:0.125em;line-height:1.42857143;border:0.0625em solid transparent;border-radius:0.25em 0.25em 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:0.0625em solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:0.3125em;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0.25em}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:0.0625em solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:0.0625em solid #ddd;border-radius:0.25em 0.25em 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0.25em}.nav-pills>li+li{margin-left:0.125em}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:0.125em;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:0.3125em;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0.25em}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:0.0625em solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:0.0625em solid #ddd;border-radius:0.25em 0.25em 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-0.0625em;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:3.125em;margin-bottom:1.25em;border:0.0625em solid transparent}@media (min-width:768px){.navbar{border-radius:0.25em}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:0.9375em;padding-left:0.9375em;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:0.0625em solid transparent;-webkit-box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1);box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:32.5em}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:12.5em}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-0.9375em;margin-left:-0.9375em}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 0.0625em}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 0.0625em}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:0.0625em 0 0}.navbar-brand{float:left;height:3.125em;padding:0.9375em 0.9375em;font-size:1.125em;line-height:1.25em}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-0.9375em}}.navbar-toggle{position:relative;float:right;padding:0.5625em 0.625em;margin-top:0.5em;margin-right:0.9375em;margin-bottom:0.5em;background-color:transparent;background-image:none;border:0.0625em solid transparent;border-radius:0.25em}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:1.375em;height:0.125em;border-radius:0.0625em}.navbar-toggle .icon-bar+.icon-bar{margin-top:0.25em}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.0.3125em -0.9375em}.navbar-nav>li>a{padding-top:0.625em;padding-bottom:0.625em;line-height:1.25em}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:0.3125em 0.9375em 0.3125em 20.3125em}.navbar-nav .open .dropdown-menu>li>a{line-height:1.25em}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:0.9375em;padding-bottom:0.9375em}}.navbar-form{padding:0.625em 0.9375em;margin-top:0.5em;margin-right:-0.9375em;margin-bottom:0.5em;margin-left:-0.9375em;border-top:0.0625em solid transparent;border-bottom:0.0625em solid transparent;-webkit-box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1),0 0.0625em 0 rgba(255,255,255,.1);box-shadow:inset 0 0.0625em 0 rgba(255,255,255,.1),0 0.0625em 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:0.3125em}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:0.25em;border-top-right-radius:0.25em;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:0.5em;margin-bottom:0.5em}.navbar-btn.btn-sm{margin-top:0.625em;margin-bottom:0.625em}.navbar-btn.btn-xs{margin-top:10.25em;margin-bottom:10.25em}.navbar-text{margin-top:0.9375em;margin-bottom:0.9375em}@media (min-width:768px){.navbar-text{float:left;margin-right:0.9375em;margin-left:0.9375em}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-0.9375em}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:0.5em 0.9375em;margin-bottom:1.25em;list-style:none;background-color:#f5f5f5;border-radius:0.25em}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 0.3125em;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:1.25em 0;border-radius:0.25em}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:0.375em 1.125em;margin-left:-0.0625em;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:0.0625em solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:0.25em;border-bottom-left-radius:0.25em}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:0.25em;border-bottom-right-radius:0.25em}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:0.625em 10.375em;font-size:1.125em;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:0.375em;border-bottom-left-radius:0.375em}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:0.375em;border-bottom-right-radius:0.375em}.pagination-sm>li>a,.pagination-sm>li>span{padding:0.3125em 0.625em;font-size:0.750em;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:0.1875em;border-bottom-left-radius:0.1875em}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:0.1875em;border-bottom-right-radius:0.1875em}.pager{padding-left:0;margin:1.25em 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:0.3125em 10.25em;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.9375em}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-0.0625em}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:0.625em;padding:0.1875em 0.4375em;font-size:0.750em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:0.625em}.badge:empty{display:none}.btn .badge{position:relative;top:-0.0625em}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:0.0625em 0.3125em}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:0.3125em}.nav-pills>li>a>.badge{margin-left:0.1875em}.jumbotron{padding-top:1.875em;padding-bottom:1.875em;margin-bottom:1.875em;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:0.9375em;font-size:1.313em;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:0.9375em;padding-left:0.9375em;border-radius:0.375em}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:3em;padding-bottom:3em}.container .jumbotron,.container-fluid .jumbotron{padding-right:3.75em;padding-left:3.75em}.jumbotron .h1,.jumbotron h1{font-size:3.938em}}.thumbnail{display:block;padding:0.25em;margin-bottom:1.25em;line-height:1.42857143;background-color:#fff;border:0.0625em solid #ddd;border-radius:0.25em;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:0.5625em;color:#333}.alert{padding:0.9375em;margin-bottom:1.25em;border:0.0625em solid transparent;border-radius:0.25em}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:0.3125em}.alert-dismissable,.alert-dismissible{padding-right:30.3125em}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-0.125em;right:-20.0625em;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:2.5em 0}to{background-position:0 0}}.progress{height:1.25em;margin-bottom:1.25em;overflow:hidden;background-color:#f5f5f5;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.125em rgba(0,0,0,.1);box-shadow:inset 0 0.0625em 0.125em rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:0.750em;line-height:1.25em;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.15);box-shadow:inset 0 -0.0625em 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:2.5em 2.5em;background-size:2.5em 2.5em}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:0.9375em}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:625em}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:0.625em}.media-left,.media>.pull-left{padding-right:0.625em}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:0.3125em}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:1.25em}.list-group-item{position:relative;display:block;padding:0.625em 0.9375em;margin-bottom:-0.0625em;background-color:#fff;border:0.0625em solid #ddd}.list-group-item:first-child{border-top-left-radius:0.25em;border-top-right-radius:0.25em}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0.25em;border-bottom-left-radius:0.25em}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:0.3125em}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:1.25em;background-color:#fff;border:0.0625em solid transparent;border-radius:0.25em;-webkit-box-shadow:0 0.0625em 0.0625em rgba(0,0,0,.05);box-shadow:0 0.0625em 0.0625em rgba(0,0,0,.05)}.panel-body{padding:0.9375em}.panel-heading{padding:0.625em 0.9375em;border-bottom:0.0625em solid transparent;border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:1em;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:0.625em 0.9375em;background-color:#f5f5f5;border-top:0.0625em solid #ddd;border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:0.0625em 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:0.9375em;padding-left:0.9375em}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0.1875em;border-top-right-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0.1875em}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:0.1875em;border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0.1875em}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0.1875em}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:0.0625em solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:1.25em}.panel-group .panel{margin-bottom:0;border-radius:0.25em}.panel-group .panel+.panel{margin-top:0.3125em}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:0.0625em solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:0.0625em solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:1.25em;padding:10.5625em;margin-bottom:1.25em;background-color:#f5f5f5;border:0.0625em solid #e3e3e3;border-radius:0.25em;-webkit-box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.05);box-shadow:inset 0 0.0625em 0.0625em rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:20.25em;border-radius:0.375em}.well-sm{padding:0.5625em;border-radius:0.1875em}.close{float:right;font-size:1.313em;font-weight:700;line-height:1;color:#000;text-shadow:0 0.0625em 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:0.625em}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #999;border:0.0625em solid rgba(0,0,0,.2);border-radius:0.375em;outline:0;-webkit-box-shadow:0 0.1875em 0.5625em rgba(0,0,0,.5);box-shadow:0 0.1875em 0.5625em rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:0.9375em;border-bottom:0.0625em solid #e5e5e5}.modal-header .close{margin-top:-0.125em}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:0.9375em}.modal-footer{padding:0.9375em;text-align:right;border-top:0.0625em solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:0.3125em}.modal-footer .btn-group .btn+.btn{margin-left:-0.0625em}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9990.5625em;width:3.125em;height:3.125em;overflow:scroll}@media (min-width:768px){.modal-dialog{width:37.5em;margin:1.875em auto}.modal-content{-webkit-box-shadow:0 0.3125em 0.9375em rgba(0,0,0,.5);box-shadow:0 0.3125em 0.9375em rgba(0,0,0,.5)}.modal-sm{width:18.75em}}@media (min-width:990.125em){.modal-lg{width:56.25em}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.750em;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:0.3125em 0;margin-top:-0.1875em}.tooltip.right{padding:0 0.3125em;margin-left:0.1875em}.tooltip.bottom{padding:0.3125em 0;margin-top:0.1875em}.tooltip.left{padding:0 0.3125em;margin-left:-0.1875em}.tooltip-inner{max-width:12.5em;padding:0.1875em 0.5em;color:#fff;text-align:center;background-color:#000;border-radius:0.25em}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:0.3125em;bottom:0;margin-bottom:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:0.3125em;margin-bottom:-0.3125em;border-width:0.3125em 0.3125em 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-0.3125em;border-width:0.3125em 0.3125em 0.3125em 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-0.3125em;border-width:0.3125em 0 0.3125em 0.3125em;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:0.3125em;margin-top:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:0.3125em;margin-top:-0.3125em;border-width:0 0.3125em 0.3125em;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:270.375em;padding:0.0625em;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:0.875em;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:0.0625em solid #ccc;border:0.0625em solid rgba(0,0,0,.2);border-radius:0.375em;-webkit-box-shadow:0 0.3125em 0.625em rgba(0,0,0,.2);box-shadow:0 0.3125em 0.625em rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-0.625em}.popover.right{margin-left:0.625em}.popover.bottom{margin-top:0.625em}.popover.left{margin-left:-0.625em}.popover-title{padding:0.5em 10.25em;margin:0;font-size:0.875em;background-color:#f7f7f7;border-bottom:0.0625em solid #ebebeb;border-radius:0.3125em 0.3125em 0 0}.popover-content{padding:0.5625em 10.25em}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:10.0625em}.popover>.arrow:after{content:"";border-width:0.625em}.popover.top>.arrow{bottom:-10.0625em;left:50%;margin-left:-10.0625em;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:0.0625em;margin-left:-0.625em;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-10.0625em;margin-top:-10.0625em;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-0.625em;left:0.0625em;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-10.0625em;left:50%;margin-left:-10.0625em;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:0.0625em;margin-left:-0.625em;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-10.0625em;margin-top:-10.0625em;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:0.0625em;bottom:-0.625em;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:62.5em;perspective:62.5em}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:1.250em;color:#fff;text-align:center;text-shadow:0 0.0625em 0.125em rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-0.625em}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-0.625em}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-0.625em}.carousel-control .icon-next,.carousel-control .icon-prev{width:1.25em;height:1.25em;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:0.625em;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:0.625em;height:0.625em;margin:0.0625em;text-indent:-990.5625em;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:0.0625em solid #fff;border-radius:0.625em}.carousel-indicators .active{width:1.125em;height:1.125em;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:1.25em;left:15%;z-index:10;padding-top:1.25em;padding-bottom:1.25em;color:#fff;text-align:center;text-shadow:0 0.0625em 0.125em rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:1.875em;height:1.875em;margin-top:-0.9375em;font-size:1.875em}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-0.9375em}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-0.9375em}.carousel-caption{right:20%;left:20%;padding-bottom:1.875em}.carousel-indicators{bottom:1.25em}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:990.0625em){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-block{display:block!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-inline{display:inline!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:990.0625em){.hidden-sm{display:none!important}}@media (min-width:990.125em) and (max-width:1190.5625em){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/app/assets/stylesheets/recruit_news_calendar_widget2.css.scss b/app/assets/stylesheets/recruit_news_calendar_widget2.css.scss new file mode 100644 index 0000000..11c45a4 --- /dev/null +++ b/app/assets/stylesheets/recruit_news_calendar_widget2.css.scss @@ -0,0 +1,259 @@ +.widget-event-news-calendar-2.w-calendar{ + .w-calendar-table { + table-layout: fixed; + width: 100%; + flex: 1; + } + .height100 { + flex: 1; + display: flex; + flex-direction: column; + } + a.event-container-one{ + color: inherit; + } + .close_box{ + font-weight: bold; + position: relative; + float: right; + padding: 0.5em; + cursor: pointer; + } + .close_box:hover{ + color: red; + } + .event-bullet-event { + width: 100%; + height: 100%; + border-radius: 50%; + } + .event-bullet-event { + width: 2em; + height: 2em; + border-radius: 1em; + } + .event-header{ + width: 100%; + text-align: center; + font-size: 1.7em; + font-weight: bold; + padding: 0.35em 0; + } + .event-info{ + padding-left: 15%; + } + .calendar-events{ + position: relative; + background: #fbfbfb; + display: flex; + flex-direction: column; + } + .month_template{ + position: relative; + height: 100%; + display: flex; + flex-direction: column; + } + flex-wrap: wrap; + margin-top: 2em; + margin-bottom: 1em; + .w-calendar-table td:hover { + background-color: #eaeaea; + color: #333; + } + .w-calendar-table td { + background: inherit; + color: inherit; + cursor: pointer; + border: 0; + vertical-align: middle; + } + .w-calendar-table td div{ + display: inline-flex; + justify-content: center; + align-items: center; + margin: auto; + padding: 10%; + line-height: 1.2; + } + .w-calendar-table th { + background: unset; + color: unset; + border: 0; + padding: 1.5% 0.5%; + } + .widget-title { + padding: 0.2em; + font-size: 1.5em; + } + table.w-calendar-table td.w-calendar-toggle div, table.w-calendar-table td.w-calendar-toggle div{ + background: #6f0007; + border-radius: 50%; + color: white; + } + .w-calendar-table td.w-calendar-event div{ + border: 1px #6f0007 solid; + border-radius: 50%; + background: #eee; + } + .w-calendar-title{ + background: rgb(146, 8, 17); + color: rgb(255, 255, 255); + padding: 0px 10%; + display: flex; + line-height: 2em; + justify-content: space-between; + font-size: 1.85em; + width: 100%; + .w-calendar-title span:last-child{ + float: right; + } + } + .w-calendar-title.center{ + text-align: center; + justify-content: center; + } + .calendar-dialog div.ui-dialog-content { + max-height: 20em !important; + overflow-wrap: break-word; + } + table td.w-calendar-other-month { + color: #999797; + } + .event-header{ + display: flex; + background: #dadada; + cursor: default; + } + .event-header .date{ + width: 30%; + } + .event.active .event-header .day{ + color: #bf1f1f; + } + .event.active .event-header .date{ + color: #202427; + } + .event .event-header .day{ + font-size: 1.4em; + } + .event .event-header .month{ + font-size: 0.7em; + } + .event .event-header .date{ + color: #a08a70; + } + .event-title{ + width: 70%; + display: inline-flex; + flex-direction: column; + justify-content: space-between; + } + .event-title .duration{ + font-size: 0.7em; + text-align: left; + color: #a0a1a1; + } + .duration_temp,.title_temp{ + display: none; + } + .event-inner-title{ + line-height: 2em; + text-align: left; + } + .event-containers{ + height: 0; + min-height: unset; + display: flex; + justify-content: center; + align-items: center; + position: relative; + overflow: hidden; + margin: 0 10%; + } + .event-container-one { + position: absolute; + align-items: center; + justify-content: center; + display: flex; + width: calc(100% - 0.7em);; + height: calc(100% - 0.7em); + flex-wrap: wrap; + border-radius: 10px; + margin-bottom: 1em; + cursor: pointer; + padding: 0; + margin: 0; + color: rgba(50, 50, 50, 0.45); + } + .event-container-one:hover { + background-color: #fff; + box-shadow: 0 0.1em 0.7em 0em; + } + .event-container-one .event-content{ + color: #000000; + } + button.switch_button { + margin: 10%; + width: 2.5em; + height: 2.5em; + border-radius: 1.25em; + border: 0; + background: #96231a; + color: white; + outline: 0; + } + .switch_button:hover { + background: #c07b76; + } + .switch_button_wraper{ + position: absolute; + right: 0%; + margin-right: 2%; + width: 3em; + margin-bottom: 2%; + bottom: 0; + display: flex; + flex-direction: column; + } + .event-wraper{ + position: relative; + overflow: hidden; + flex: 1; + } + .event-container-one:not(.active) { + right: -100%; + } + .event.active .event-containers{ + min-height: 13em; + height: 100%; + } + .calendar-events.width-100 .switch_button_wraper{ + width: 100%; + height: 100%; + margin: 0; + flex-direction: row; + justify-content: space-between; + align-items: center; + } + .calendar-events.width-100 .switch_button{ + margin: 2%; + } + .calendar-events.width-100 .event-containers{ + z-index: 3; + } + .month_template .widget-title { + border: 0; + border-bottom: 0.0625em solid #ddd; + } + &>div:first-child { + box-shadow: 0em 0.1em 0.3em 0em; + margin-bottom: 0.25em; + } + .event{ + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + } +} \ No newline at end of file diff --git a/app/assets/stylesheets/recruit_news_front.css.scss b/app/assets/stylesheets/recruit_news_front.css.scss new file mode 100644 index 0000000..ca09303 --- /dev/null +++ b/app/assets/stylesheets/recruit_news_front.css.scss @@ -0,0 +1,168 @@ +.full-size-img img { + width: 100%; +} +.full-size-img { + width: 100%; +} +.s-annc__sub-img.pull-right { + margin-left: 2em; +} +.s-annc__sub-img.pull-left { + margin-right: 2em; +} +strong.carousel__description { + color: white; +} +@media (max-width: 767px){ + .carousel_images{ + width: 100%; + } +} +.carousel_img_item{ + display: none; + float: left; +} +.controlplay { + position: absolute; + right: 1em; + top: 3%; + z-index: 200; +} +.controlplay a { + display: inline-block; + margin-right: 0.25em; + cursor: pointer; + padding: 5px 10px; + border: 1px solid rgba(255,255,255,0.5); + background: rgba(0,0,0,0.2); +} +.controlplay a i { + font-family: FontAwesome; + position: relative; + font-size: 1rem; + line-height: 1; + color: #FFF; + vertical-align: middle; + font-style: unset; +} +.controlplay .resume-slide i::before { + content: "\f04b"; +} +.controlplay .pause-slide i::before { + content: "\f04c"; +} +ul.button-mid .prev-button { + transition: 0.4s; + position: relative; + float: left; + left: 0.5rem; + width: 2.5rem; + height: 2.5rem; + font-size: 2.2rem; + color: #ffffff; + background: rgba(0,0,0,0.2); + text-align: center; + line-height: 2.5rem; + top: 50%; + position: absolute; + transform: translateY(-50%); + z-index: 999; +} +ul.button-mid .next-button { + float: right; + transition: 0.4s; + position: relative; + right: 0.5rem; + width: 2.5rem; + height: 2.5rem; + font-size: 2.2rem; + color: #fff; + background: rgba(0,0,0,0.2); + text-align: center; + line-height: 2.5rem; + top: 50%; + position: absolute; + transform: translateY(-50%); + z-index: 999; +} +.carousel_images_slide{ + padding: 3em; +} +.carousel_img_item img{ + cursor: pointer; +} +@media (max-width: 479px){ + .carousel_img_item:nth-child(-n+1){ + display: block; + width: 100%; + float: left; + } + .carousel_img_item{ + width: 100%; + } +} +@media (min-width: 480px){ + .carousel_img_item:nth-child(-n+2){ + display: block; + width: 50%; + float: left; + } + .carousel_img_item{ + width: 50%; + } +} +@media (min-width: 768px){ + .carousel_img_item:nth-child(-n+3){ + display: block; + width: 33%; + float: left; + } + .carousel_img_item{ + width: 33%; + } +} +@media (min-width: 1280px){ + .carousel_img_item:nth-child(-n+4){ + display: block; + width: 25%; + float: left; + } + .carousel_img_item{ + width: 25%; + } +} +.w-ba-banner .controlplay .resume-slide.active i{ + color: #32D9C3; +} +.w-ba-banner .controlplay .pause-slide.active i{ + color: #ff4500; +} +.w-ba-banner .controlplay{ + width: auto; +} +.w-ba-banner .button-mid{ + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; +} +.next-button,.prev-button{ + cursor: pointer; +} +a.orbit-hash-tag { + list-style: none; + background: #e0edff; + color: #0a84ff; + margin-right: 0.5em; + border-radius: 0.5em; + padding: 0.2em 0.5em; + margin-bottom: 0.5em; + display: inline-block; + &:hover{ + background: #0a84ff; + transform: translatey(-2px); + transition: transform 0.4s; + color: #fff; + } +} \ No newline at end of file diff --git a/app/assets/stylesheets/template/modules/recruit_news.scss b/app/assets/stylesheets/template/modules/recruit_news.scss new file mode 100644 index 0000000..163941d --- /dev/null +++ b/app/assets/stylesheets/template/modules/recruit_news.scss @@ -0,0 +1,694 @@ +@charset "utf-8"; + +@import "../initial"; + +// +// Widget +// + +// RecruitNews widget +// ## Gerneral styles for widgets +.w-recruit_news { + .w-recruit_news__widget-title { + @extend .unity-title; + } + + .w-recruit_news__list { + margin: 0; + padding: 0; + list-style: none; + } + + .w-recruit_news__item { + margin-bottom: 1.875em; + } + + .label { + font-size: 0.75rem; + font-weight: normal; + } + + .w-recruit_news__meta { + .w-recruit_news__status-wrap, + .w-recruit_news__postdate-wrap, + .w-recruit_news__category-wrap { + display: inline-block; + margin-right: 0.2em; + font-size: 0.8125em; + color: $theme-gray; + font-weight: normal; + } + + i { + color: $theme-gray; + } + } + + .w-recruit_news__subtitle { + font-size: 0.8125em; + color: $theme-gray; + } + + .w-recruit_news__entry-title { + margin-bottom: 0.625em; + } + + .w-recruit_news__title { + font-family: $sub-font; + color: $theme-color-main; + text-decoration: none; + font-size: 0.8125rem; + + &:hover { + color: darken($theme-color-main, 10%); + } + } +} + +// Widget-1 +.widget-recruit_news-1 { + .w-recruit_news__img-wrap { + height: 12.5em; + margin: 0 0 1em 0; + } + + .w-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } +} + +// Widget-2 +.widget-recruit_news-2 { + .w-recruit_news__img-wrap { + height: 12.5em; + margin: 0 0 1em 0; + } + + .w-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } +} + +// Widget-3 +.widget-recruit_news-3 { + .w-recruit_news__img-wrap { + height: 12.5em; + margin: 0 0 1em 0; + } + + .w-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } +} + +// Widget-4 +.widget-recruit_news-4 { + .w-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } + + .w-recruit_news__list > .w-recruit_news__item:nth-child(3n+1) { + clear: both; + } + + .w-recruit_news__img-wrap { + height: 12.5em; + margin: 0 0 1em 0; + } +} + +// Widget-5 +.widget-recruit_news-5 { + .w-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } + + .w-recruit_news__item { + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + padding-bottom: 1em; + margin-bottom: 1em; + } +} + +// Widget-6 +.widget-recruit_news-6 { + .w-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .w-recruit_news__entry-title { + margin: 0; + } + + .w-recruit_news__category-wrap, + .w-recruit_news__status, + .w-recruit_news__title, + .w-recruit_news__postdate-wrap { + font-size: 0.8125rem; + } + + .w-recruit_news__status { + display: inline-block; + } +} + +// Widget-7 +.widget-recruit_news-7 { + .w-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .w-recruit_news__entry-title { + margin: 0; + } + + .w-recruit_news__category-wrap, + .w-recruit_news__status, + .w-recruit_news__title, + .w-recruit_news__postdate-wrap { + font-size: 0.75rem; + } + + .w-recruit_news__status { + display: inline-block; + } +} + +// ## Gerneral styles for table widgets + +.w-recruit_news__postdate, +.w-recruit_news__category { + white-space: nowrap; +} + +// Widget-8 +// ## Table +.widget-recruit_news-8 { + .w-recruit_news__th { + color: #fff; + background: $theme-color-main; + font-size: 0.8125em; + border: none; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } + + td { + font-size: 0.8125em; + } + + a:hover { + text-decoration: none; + } +} + +// Widget-9 +// ## Table +.widget-recruit_news-9 { + .w-recruit_news__th { + color: #fff; + background: $theme-color-main; + font-size: 0.8125em; + border: none; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } + + td { + font-size: 0.8125em; + } + + a:hover { + text-decoration: none; + } +} + +// Widget-10 +.widget-recruit_news-10 { + .w-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .w-recruit_news__entry-title { + margin: 0; + } + + .w-recruit_news__postdate-wrap { + font-size: 0.8125em; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } +} + +// Widget-11 +.widget-recruit_news-11 { + .w-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .w-recruit_news__entry-title { + margin: 0; + } + + .w-recruit_news__postdate-wrap { + font-size: 0.8125em; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } +} + +// Widget-12 +// ## Table +.widget-recruit_news-12 { + .w-recruit_news__th { + color: #fff; + background: $theme-color-main; + font-size: 0.8125em; + border: none; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } + + td { + font-size: 0.8125em; + } + + a:hover { + text-decoration: none; + } +} + +// Widget-13 +// ## Table +.widget-recruit_news-13 { + .w-recruit_news__th { + color: #fff; + background: $theme-color-main; + font-size: 0.8125em; + border: none; + } + + .w-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } + + td { + font-size: 0.8125em; + } + + a:hover { + text-decoration: none; + } +} + +// Widget-14 +.widget-recruit_news-14 { + .w-recruit_news__list { + padding: 0 0.9375em; + } + + .w-recruit_news__img-wrap { + height: 18.75em; + margin-bottom: 0.9375em; + + @media (min-width: $screen-md) { + height: 12.5em; + margin-bottom: 0; + } + } + + .w-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .w-recruit_news__entry-title { + margin: 0 0 0.625em 0; + + @media (min-width: $screen-md) { + margin-bottom: 0; + } + } + + .w-recruit_news__postdate-wrap { + font-size: 0.8125em; + } + + .w-recruit_news__status { + display: inline-block; + } + + .w-recruit_news__postdate { + font-size: 0.8125rem; + } +} + +// RecruitNews index +// ## General style for index pages +.i-recruit_news { + .i-recruit_news__page-title { + @extend .unity-title; + } + + .i-recruit_news__list { + margin: 0; + padding: 0; + list-style: none; + } + + .i-recruit_news__widget-title { + @extend .unity-title; + } + + .i-recruit_news__item { + margin-bottom: 1.875em; + } + + .i-recruit_news__img { + width: 100%; + max-width: 100%; + height: auto; + } + + .i-recruit_news__th { + color: $theme-white; + background: $theme-color-main; + font-size: 0.8125em; + border: none; + white-space: nowrap; + } + + .i-recruit_news__postdate, + .i-recruit_news__category, + .i-recruit_news__view-count { + white-space: nowrap; + } + + .i-recruit_news__status-wrap { + span { + display: inline-block; + padding: .2em .6em .3em; + + &:last-child { + margin: 0 0.3125em 0.1875em 0; + display: inline-block; + } + } + } + + td { + font-size: 0.8125rem; + } + + .i-recruit_news__title:hover { + text-decoration: none; + } + + .label { + font-size: 0.75rem; + font-weight: normal; + } + + .i-recruit_news__meta { + .i-recruit_news__status-wrap, + .i-recruit_news__postdate-wrap, + .i-recruit_news__category-wrap { + display: inline-block; + margin-right: 0.2em; + font-size: 0.8125em; + color: $theme-gray; + font-weight: normal; + } + + i { + color: $theme-gray; + } + } + + .i-recruit_news__subtitle { + font-size: 0.8125em; + color: $theme-gray; + } + + .i-recruit_news__entry-title { + margin-bottom: 0.625em; + } + + .i-recruit_news__title { + font-family: $sub-font; + color: $theme-color-main; + text-decoration: none; + font-size: 0.8125rem; + + &:hover { + color: darken($theme-color-main, 10%); + } + } +} + +// Index-1 +.index-recruit_news-1 {} + +// Index-5 +// Index-6 +.index-recruit_news-5, +.index-recruit_news-6 { + .i-recruit_news__img-wrap { + margin: 0 0 1em; + } + + .i-recruit_news__title { + font-family: $main-font; + font-size: 1.2rem; + line-height: 1.3; + } +} + +// Index-7 +.index-recruit_news-7 { + .i-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } + + .i-recruit_news__list > .i-recruit_news__item:nth-child(3n+1) { + clear: both; + } + + .i-recruit_news__img-wrap { + height: 12.5em; + margin: 0 0 1em 0; + } +} + +// Index-8 +.index-recruit_news-8 { + .i-recruit_news__title { + font-family: $main-font; + line-height: 1.3; + font-size: 1.2rem; + } + + .i-recruit_news__item { + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + padding-bottom: 1em; + margin-bottom: 1em; + } +} + +// Index-9 +// Index-10 +.index-recruit_news-9, +.index-recruit_news-10 { + .i-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .i-recruit_news__entry-title { + margin: 0; + } + + .i-recruit_news__category-wrap, + .i-recruit_news__status, + .i-recruit_news__title, + .i-recruit_news__postdate-wrap { + font-size: 0.8125rem; + } + + .i-recruit_news__status { + display: inline-block; + } +} + +// Index-11 +// Index-12 +.index-recruit_news-11, +.index-recruit_news-12 { + .i-recruit_news__item { + margin-bottom: 0.8em; + padding-bottom: 0.8em; + border-bottom: 0.0625em dashed lighten($theme-gray, 65%); + } + + .i-recruit_news__entry-title { + margin: 0; + } + + .i-recruit_news__postdate-wrap { + font-size: 0.8125em; + } + + .i-recruit_news__status { + display: inline-block; + font-size: 0.75rem; + } +} + +// Index-16 +.index-recruit_news-16 { + td ul { + margin: 0; + padding: 0; + list-style: none; + } +} + +// RecruitNews show +.s-recruit_news { + .s-recruit_news__show-title { + @extend .unity-title; + } + + .s-recruit_news__meta-wrap { + border-bottom: 0.0625em solid $theme-gray-light; + + @include clearfix; + + .s-recruit_news__meta--item { + font-size: 0.875rem; + margin-right: 1em; + margin-bottom: 0.6em; + float: left; + + i { + color: darken($theme-gray-light, 10%); + } + } + + .s-recruit_news__tag-wrap { + position: relative; + margin-right: 0; + padding-left: 1.6em; + clear: both; + float: none; + + i { + position: absolute; + top: 0.4375em; + left: 0; + } + } + + .s-recruit_news__tag-wrap { + .s-recruit_news__tag { + font-weight: normal; + } + } + } + + .s-recruit_news__post-wrap { + @include clearfix; + + margin-bottom: 2em; + } + + .s-recruit_news__related-wrap { + padding-top: 1em; + border-top: 0.0625em dotted $theme-gray-light; + } + + .s-recruit_news__related-file { + margin-bottom: 0.9375em; + } + + .s-recruit_news__related-file, + .s-recruit_news__related-link { + padding-bottom: 0.375em; + padding-left: 1.6em; + + i { + margin: 0.5em 0 0 -1.6em; + float: left; + color: darken($theme-gray-light, 10%); + } + } + + .s-recruit_news__related-link-list, + .s-recruit_news__related-file-list { + display: inline-block; + } + + .s-recruit_news__flie-title { + max-width: 9.375rem; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + + .s-recruit_news__social > * { + display: inline-block; + vertical-align: top; + } + + .s-recruit_news__social .print-button { + color: #fff; + font-size: 0.688em; + border-radius: 0.25em; + padding: 0.125em 0.375em; + background-color: $theme-color-main; + } + + .s-recruit_news__social .print-button:hover { + background-color: lighten($theme-color-main, 10%); + } +} + + diff --git a/app/controllers/.keep b/app/controllers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/controllers/action_dispatch.rb b/app/controllers/action_dispatch.rb new file mode 100644 index 0000000..6712e9e --- /dev/null +++ b/app/controllers/action_dispatch.rb @@ -0,0 +1,7 @@ +module ActionDispatch + class Request + def original_url + original_fullpath + end + end +end \ No newline at end of file diff --git a/app/controllers/admin/recruit_news_controller.rb b/app/controllers/admin/recruit_news_controller.rb new file mode 100644 index 0000000..8f54bc8 --- /dev/null +++ b/app/controllers/admin/recruit_news_controller.rb @@ -0,0 +1,596 @@ +# encoding: utf-8 +require 'rubyXL' +class Admin::RecruitNewsController < OrbitAdminController + include Admin::RecruitNewsHelper + before_action ->(module_app = @app_title) { set_variables module_app } + before_action :set_recruit_news, only: [:edit, :destroy] + before_action :load_access_level, :load_settings + + def initialize + super + @app_title = "recruit_news_mod" + end + def update_sort + ids = params[:ids] + ids.each_with_index do |id,i| + RecruitNews.where(id: id).update(sort_number: i) + end + RecruitNewsCache.all.delete + edit_sort + render 'update_sort',layout: false + + end + + def update_sort_setting + setting = @recruit_news_setting + setting.update_attributes(settings_params) + update_enable_manually_sort(setting) + redirect_to edit_sort_admin_recruit_news_index_path + end + + def edit_sort + @setting = @recruit_news_setting + @recruit_news = RecruitNews.where(is_top: true).order_by({is_top: -1,sort_number: 1,postdate: -1, _id: -1}) + @table_fields = ['recruit_news.table.sort_number','recruit_news.table.title','recruit_news.event_date','recruit_news.start_date'] + end + + def index + RecruitNews.remove_expired_status + @tags = @module_app.tags + @table_fields = [:status, :category, :title, "recruit_news.event_date", "recruit_news.start_date", "recruit_news.end_date", :last_modified] + @current_user = current_user + if params[:sort].blank? + params[:sort] = 'event_date' + params[:order] = 'desc' + end + if RecruitNewsSetting.first.is_display_edit_only && !current_user.is_admin? && !current_user.is_manager?(@module_app) + current_user_is_sub_manager = !current_user.is_manager?(@module_app) && (current_user.is_sub_manager?(@module_app) || current_user.is_sub_manager_with_role?(@module_app)) rescue false + if current_user_is_sub_manager + @categories = current_user.approved_categories.select{|c| c.module_app_id == @module_app.id} rescue [] + @filter_fields = filter_fields(@categories, @tags) + @recruit_news = RecruitNews.where(:category_id.ne=>nil, :create_user_id=>current_user.id,:is_preview.in=>[false,nil]) + .order_by(sort) + .with_categories(filters("category")) + .with_tags(filters("tag")) + .with_status(filters("status")) + else + @recruit_news = RecruitNews.where(:category_id.ne=>nil, :uid=>nil).order_by(sort) + @categories = @module_app.categories.enabled + @filter_fields = filter_fields(@categories, @tags) + end + else + @categories = @module_app.categories.enabled + @filter_fields = filter_fields(@categories, @tags) + @recruit_news = RecruitNews.where(:category_id.ne=>nil, :is_preview.in=>[false,nil]) + .order_by(sort) + .with_categories(filters("category")) + .with_tags(filters("tag")) + .with_status(filters("status")) + end + @recruit_news = search_data(@recruit_news,[:title]).page(params[:page]).per(10) + + if request.xhr? + render :partial => "index" + end + end + + def feed + @table_feed_fields = ["recruit_news.feed_name", :tags, :categories, "recruit_news.rssfeed", "recruit_news.jsonfeed"] + @feeds = RecruitNewsFeed.all.asc(:created_at) + + end + def generate_iframe_url + iframe_params = params.require(:iframe).permit! + uids = iframe_params['member_ids'].to_a.map{|m_id| MemberProfile.find(m_id).uid rescue nil}.select{|uid| !uid.nil?} + url_params = iframe_params.except(:member_ids) + url_params['uids'] = uids if uids != [] + render :text => '/xhr/panel/recruit_news/widget/sync_data?'+url_params.to_param + end + def settings + @setting = @recruit_news_setting + roles = Role.all + @sorted_members = roles.inject({}) do |members,role| + members_for_role = role.member_profiles.select{|m| (m.user.nil? ? false : m.user.approved)} + members[role] = members_for_role + members + end + @sorted_members['no_role'] = MemberProfile.any_in(:role_ids=>[nil,[]]).select{|m| (m.user.nil? ? false : m.user.approved)} + @unapproved_members = User.where(:approved => false).map{|u| u.member_profile} + end + + def import + end + + def excel_format + respond_to do |format| + format.xlsx { + response.headers['Content-Disposition'] = 'attachment; filename="recruit_news_import_format.xlsx"' + } + end + end + + def export_excel + @thread = Multithread.where(:key=>'export_recruit_news').first + update_flag = true + if @thread.nil? + @thread = Multithread.create(:key=>'export_recruit_news',:status=>{:status=>'Processing'}) + else + update_flag = false if @thread.status[:status] == 'Processing' && @thread.respond_to?(:updated_at) && (@thread.updated_at > DateTime.now - 1.minute rescue false) + if update_flag + @thread.update(:status=>{:status=>'Processing'}) + end + end + if update_flag + Thread.new do + begin + @recruit_news = RecruitNews.where(:category_id.ne=>nil).desc(:created_at) + last_updated = RecruitNews.max(:updated_at).to_i + filename = "public/recruit_news_export_#{last_updated}.xlsx" + if File.exist?(filename) + @thread.update(:status=>{:status=>'finish','finish_percent'=>100,'info'=>I18n.t('recruit_news.read_from_cache')}) + else + excel_contents = render_to_string( handlers: [:axlsx], formats: [:xlsx] , layout: false, template: 'admin/recruit_news/export_excel.xlsx', locals: {:@recruit_news=>@recruit_news,:@thread=>@thread} ) + File.open(filename, 'w') do |f| + f.write excel_contents + end + end + @thread.status[:file] = filename + @thread.status[:filename] = "recruit_news_export_#{DateTime.now.in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y_%m_%d_%H%M')}.xlsx" + @thread.save + rescue => e + @thread.status[:status] = 'error' + # @thread.status[:info] = [e.to_s, e.backtrace] + puts [e.to_s, e.backtrace] + @thread.save + end + end + end + redirect_to admin_recruit_news_import_path(:thread_id=>@thread.id.to_s) + end + def render_404 + render :file => "#{Rails.root}/app/views/errors/404.html", :layout => false, :status => 404, :formats => [:html] + end + def download_file_from_thread + @thread = Multithread.where(:id=>params[:id]).first if params[:id].present? + if @thread && @thread.status[:file] + send_file(@thread.status[:file],:filename=>@thread.status[:filename]) + else + render_404 + end + end + + def import_from_xml + download_tmp_xml params["import_xml"] + import_from_tmp_xml File.read(File.join(Rails.root, "tmp", "ann_cc_ntu.xml")) + redirect_to admin_recruit_news_index_path + end + + def import + @thread = Multithread.where(:id=>params[:thread_id]).first if params[:thread_id].present? + end + + + def import_from_wp + import_from_wordpress params["import_xml"].tempfile + redirect_to admin_recruit_news_index_path + end + + def importanns + workbook = RubyXL::Parser.parse(params["import_file"].tempfile) + categories = @module_app.categories.asc(:created_at).to_a + tags = @module_app.tags.asc(:created_at).to_a + sheet = workbook[0] + if sheet.count <= 503 + sheet.each_with_index do |row, i| + next if i < 3 + v = row.cells.first.value rescue nil + next if v == "" || v.nil? + import_this_recruit_news(row, categories, tags) + end + redirect_to admin_recruit_news_index_path + else + redirect_to admin_recruit_news_index_path(:error => "1") + end + end + + def createsettings + setting = RecruitNewsSetting.new(settings_params) + setting.save + update_is_postdate_sort_first(setting) + redirect_to admin_recruit_news_settings_path + end + + def updatesettings + setting = @recruit_news_setting + ids = params['recruit_news_setting']['anns_status_settings'].to_a.collect do |i,v| + v['_id'] + end.compact + RecruitNewsStatusSetting.where(:id.nin=>ids).destroy + setting.update_attributes(settings_params) + setting.save + update_is_postdate_sort_first(setting) + redirect_to admin_recruit_news_settings_path + end + + def feedform + if params[:type] == "new" + @recruit_news_feed = RecruitNewsFeed.new + render :partial => "feed_form" + else params[:type] == "edit" + @recruit_news_feed = RecruitNewsFeed.find(params[:id]) + render :partial => "edit_feed_form" + end + end + + def createfeed + recruit_news_feed = RecruitNewsFeed.new(feed_params) + recruit_news_feed.save + feeds = RecruitNewsFeed.all.asc(:created_at) + render :partial => "feed", :collection => feeds + end + + def updatefeed + ann_feed = RecruitNewsFeed.find(params[:id]) + ann_feed.update_attributes(feed_params) + ann_feed.save + feeds = RecruitNewsFeed.all.asc(:created_at) + render :partial => "feed", :collection => feeds + end + + def deletefeed + ann_feed = RecruitNewsFeed.find(params[:id]) + ann_feed.destroy + feeds = RecruitNewsFeed.all.asc(:created_at) + render :partial => "feed", :collection => feeds + end + + def new + @tags = @module_app.tags + @statuses = [] + @recruit_news = RecruitNews.new + @recruit_news.email_sentdate = Time.now + @reach_limit = @recruit_news.check_status_limit(current_user,true) + if defined? Calendar + categories = user_authenticated_categories rescue ['all'] + if categories.first == "all" + @calendar_categories = CalendarType.all + else + @calendar_categories = CalendarType.where(:category_id.in => categories) rescue [] + end + end + end + + def create + bps = recruit_news_params + recruit_news = RecruitNews.new(bps) + if !bps['recruit_news_links_attributes'].nil? + bps['recruit_news_links_attributes'].each do |idx,link| + bps['recruit_news_links_attributes'].delete(idx.to_s) if link['url'].blank? + end + end + if((!RecruitNewsSetting.first.only_manager_can_edit_status) || (RecruitNewsSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) ) + if bps[:is_top] == "1" && !RecruitNewsSetting.check_limit_for_user(recruit_news.create_user_id, recruit_news.id) + bps[:is_top] = "0" + bps[:top_end_date] = nil + end + else + bps[:is_top] = false + bps[:is_hot] = false + bps[:is_hidden] = false + end + + # if !defined?(Calendar).nil? + # if bps[:add_to_calendar] == '0' && !bps[:event_id].blank? + # Event.find(bps[:event_id]).destroy rescue nil + # bps[:event_id] = nil + # elsif bps[:add_to_calendar] == '1' + # event = Event.find(bps[:event_id]) rescue Event.new(create_user_id: current_user.id) + # e_start = bps[:calendar_start_date].blank? ? bps[:postdate] : bps[:calendar_start_date] + # e_start = Time.now.to_datetime if e_start.blank? + # e_end = bps[:calendar_end_date].blank? ? bps[:deadline] : bps[:calendar_end_date] + # e_end = Time.now.to_datetime + 1.year if e_end.blank? + # event.update_attributes(recruit_news_id: recruit_news.id,start: e_start,end: e_end,update_user_id: current_user.id,all_day: bps[:calendar_all_day],calendar_type_id: bps[:calendar_type_id],title: bps[:title_translations][I18n.locale],note: bps[:subtitle_translations][I18n.locale]) + # bps[:event_id] = event.id + # end + # end + recruit_news.create_user_id = current_user.id + recruit_news.update_user_id = current_user.id + if RecruitNewsSetting.is_pro? + if user_can_approve? + recruit_news.approved = true + else + send_notification_mail_to_managers(recruit_news,"approval",I18n.locale) + end + else + recruit_news.approved = true + end + + recruit_news.save + build_email(recruit_news,I18n.locale) + Thread.new do + recruit_news.notify_feed("create") + end + redirect_to params['referer_url'] + end + + def approve_recruit_news + id = params[:id] + recruit_news = RecruitNews.find(id) + if params["approved"] == "true" + recruit_news.approved = true + recruit_news.rejected = false + recruit_news.reapproval = false + else + recruit_news.rejected = true + recruit_news.reapproval = false + recruit_news.rejection_reason = params["reason"] + send_rejection_email(recruit_news,I18n.locale) + end + recruit_news.save + redirect_to admin_recruit_news_index_path + end + + def edit + if can_edit_or_delete?(@recruit_news) + @reach_limit = @recruit_news.check_status_limit(current_user,true) + @tags = @module_app.tags + @categories = @module_app.categories.enabled + if defined? Calendar + categories = user_authenticated_categories rescue ['all'] + if categories.first == "all" + @calendar_categories = CalendarType.all + else + @calendar_categories = CalendarType.where(:category_id.in => categories) rescue [] + end + end + @statuses = [] + @recruit_news.email_sentdate = Time.now if @recruit_news.email_sent == false + else + render_401 + end + end + + def update + uid = params[:id].split('-').last + recruit_news = RecruitNews.find_by(:uid=>uid) + bps = recruit_news_params + bps[:tags] = bps[:tags].blank? ? [] : bps[:tags] + bps[:email_member_ids] = bps[:email_member_ids].blank? ? [] : bps[:email_member_ids] + + if !bps['recruit_news_links_attributes'].nil? + bps['recruit_news_links_attributes'].each do |idx,link| + bps['recruit_news_links_attributes'].delete(idx.to_s) if link['url'].blank? + end + end + if((!RecruitNewsSetting.first.only_manager_can_edit_status) || (RecruitNewsSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) ) + if bps[:is_top] == "1" && !RecruitNewsSetting.check_limit_for_user(recruit_news.create_user_id, recruit_news.id) + bps[:is_top] = "0" + bps[:top_end_date] = nil + end + else + bps[:is_top] = recruit_news.is_top + bps[:is_hot] = recruit_news.is_hot + bps[:is_hidden] = recruit_news.is_hidden + end + # if !defined?(Calendar).nil? + # if bps[:add_to_calendar] == '0' && !bps[:event_id].blank? + # Event.find(bps[:event_id]).destroy rescue nil + # bps[:event_id] = nil + # elsif bps[:add_to_calendar] == '1' + # event = Event.find(bps[:event_id]) rescue Event.new(create_user_id: current_user.id) + # e_start = bps[:calendar_start_date].blank? ? bps[:postdate] : bps[:calendar_start_date] + # e_start = Time.now.to_datetime if e_start.blank? + # e_end = bps[:calendar_end_date].blank? ? bps[:deadline] : bps[:calendar_end_date] + # e_end = Time.now.to_datetime + 1.year if e_end.blank? + # event.update_attributes(recruit_news_id: recruit_news.id,start: e_start,end: e_end,update_user_id: current_user.id,all_day: bps[:calendar_all_day],calendar_type_id: bps[:calendar_type_id],title: bps[:title_translations][I18n.locale],note: bps[:subtitle_translations][I18n.locale]) + # bps[:event_id] = event.id + # end + # end + recruit_news.update_attributes(bps) + recruit_news.update_user_id = current_user.id + if recruit_news.rejected + recruit_news.reapproval = true + recruit_news.save + send_notification_mail_to_managers(recruit_news,"reapproval",I18n.locale) + else + recruit_news.save + end + build_email(recruit_news,I18n.locale) + Thread.new do + recruit_news.notify_feed("update") + end + now_recruit_news_page = RecruitNews.where(:title.ne => "",:is_preview.in=>[false,nil]) + .order_by(sort).map(&:id).map.with_index.select{|v,i| v==recruit_news.id}[0][1] rescue nil + now_recruit_news_page = now_recruit_news_page.nil? ? 0 : ((now_recruit_news_page+1).to_f/10).ceil + redirect_to admin_recruit_news_index_path(:page=>now_recruit_news_page) + end + + def destroy + @recruit_news.destroy + Thread.new do + @recruit_news.notify_feed("destroy") + end + redirect_to "/admin/recruit_news" + end + + def delete + if params[:ids] + RecruitNews.any_in(:uid => params[:ids]).destroy_all + Thread.new do + RecruitNews.notify_feed_delete(params[:ids]) + end + end + redirect_to "/admin/recruit_news" + end + + def preview + if params['preview_type'].eql?('edit') + recruit_news_data = recruit_news_params + org_recruit_news = RecruitNews.find(params['recruit_news_id']) + recruit_news = org_recruit_news.clone + recruit_news.generate_uid + recruit_news.recruit_news_files = [] + recruit_news.recruit_news_links = [] + if recruit_news_data['image'].blank? + recruit_news.image = org_recruit_news.image + end + + if !recruit_news_data['recruit_news_files_attributes'].blank? + recruit_news_data['recruit_news_files_attributes'].each do |key, recruit_news_file| + next if !recruit_news_file['_destroy'].blank? + file = nil + if recruit_news_file['id'].blank? + file = RecruitNewsFile.new(recruit_news_file) + file.recruit_news_id = recruit_news.id + file.save + else + org_file = RecruitNewsFile.find(recruit_news_file['id']) + file = org_file.clone + file.recruit_news_id = recruit_news.id + file.file = org_file.file + recruit_news_file.delete('id') + recruit_news_file.delete('_destroy') + file.update_attributes(recruit_news_file) + end + + file.save + recruit_news.recruit_news_files << file + end + end + + if !recruit_news_data['recruit_news_links_attributes'].blank? + recruit_news_data['recruit_news_links_attributes'].each do |key, recruit_news_link| + next if !recruit_news_link['_destroy'].blank? + + if recruit_news_link['id'].blank? + link = RecruitNewsLink.new(recruit_news_link) + link.recruit_news_id = recruit_news.id + else + link = RecruitNewsLink.find(recruit_news_link['id']).clone + link.recruit_news_id = recruit_news.id + recruit_news_link.delete('id') + recruit_news_link.delete('_destroy') + link.update_attributes(recruit_news_link) + end + + link.save + recruit_news.recruit_news_links << link + end + end + + recruit_news_data.delete('recruit_news_files_attributes') + recruit_news_data.delete('recruit_news_links_attributes') + recruit_news.update_attributes(recruit_news_data) + else + recruit_news = RecruitNews.new(recruit_news_params) + end + + recruit_news.is_preview = true + recruit_news.save + render :text=>page_for_recruit_news(recruit_news) + "?preview=true" + end + + def destroy_preview + recruit_news = RecruitNews.find_by(:uid=>params['uid']) + if recruit_news.is_preview + recruit_news.destroy + end + render :json=>{'destroy'=>recruit_news.id.to_s} + end + + def build_email(recruit_news,locale) + if recruit_news.email_sent and !recruit_news.email_addresses.blank? + if recruit_news.email.nil? + email = Email.new + email.save + email.deliver rescue nil + recruit_news.email_id = email.id + recruit_news.save + end + + is_sent = recruit_news.email.is_sent + is_sent = !params[:resend_mail].eql?("true") if !params[:resend_mail].blank? + doc = Nokogiri::HTML(recruit_news.title_translations[locale]) + title = doc.text.empty? ? 'no content' : doc.text + + recruit_news.email.update_attributes( + :create_user=>current_user, + :mail_sentdate=>recruit_news.email_sentdate, + :module_app=>@module_app, + :mail_lang => locale, + :mail_to=>recruit_news.email_addresses, + :mail_subject=>title, + :template=>'recruit_news/email', + :template_data=>{ + "host" => request.host_with_port, + "title" => title, + "url" => page_for_recruit_news(recruit_news) + }, + :is_sent=>is_sent + ) + recruit_news.email.deliver + else + recruit_news.email.destroy if !recruit_news.email.nil? + end + end + + def custom_fields_title + @recruit_news_custom_titles = RecruitNewsCustomTitle.get_map + end + + def update_custom_title + recruit_news_custom_title_params = params.require(:recruit_news_custom_title).permit! + recruit_news_custom_title_params.each do |k,recruit_news_custom_title_param| + RecruitNewsCustomTitle.find(recruit_news_custom_title_param['id']).update_attributes(recruit_news_custom_title_param) + end + Thread.new do + content = "UNICORN_PID=\"`fuser tmp/pids/unicorn.sock tmp/sockets/unicorn.sock tmp/unicorn.sock` `cat tmp/pids/unicorn.pid `\" && kill -s USR2 $UNICORN_PID ; n=20; while (kill -0 $UNICORN_PID > /dev/null 2>&1) && test $n -ge 0; do printf '.' && sleep 1 && n=$(( $n - 1 )); done ; if test $n -lt 0; then kill -s TERM $UNICORN_PID; sleep 3; bundle exec unicorn_rails -c config/unicorn.rb -D -E #{Rails.env}; else kill -s QUIT $UNICORN_PID; fi" + system(content) + end + redirect_to admin_recruit_news_index_path + end + + private + + def load_settings + @recruit_news_setting = RecruitNewsSetting.first rescue nil + if @recruit_news_setting.nil? + @recruit_news_setting = RecruitNewsSetting.create + end + end + + def set_recruit_news + @recruit_news = RecruitNews.find(params[:id]) + end + + def recruit_news_params + params[:recruit_news][:email_sent] = params[:recruit_news][:email_sent].nil? ? 0 : params[:recruit_news][:email_sent] + params.require(:recruit_news).permit! + end + + def feed_params + params.require(:recruit_news_feed).permit! + end + + def settings_params + params.require(:recruit_news_setting).permit! + end + + def update_enable_manually_sort(setting) + if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash + OrbitHelper::SharedHash['recruit_news_mod'][:enable_manually_sort] = setting.enable_manually_sort + end + end + + def update_is_postdate_sort_first(setting) + if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash + OrbitHelper::SharedHash['recruit_news_mod'][:is_postdate_sort_first] = setting.is_postdate_sort_first + feeds_time_field = (RecruitNewsHelper.is_postdate_sort_first ? ['postdate', 'event_date'] : ['event_date', 'postdate']) + @module_app.feeds_time_field = feeds_time_field + @module_app.save + if defined?(Feeds) + Feeds::Migrate.sync_module_apps + end + end + end +end diff --git a/app/controllers/recruit_news_feeds_controller.rb b/app/controllers/recruit_news_feeds_controller.rb new file mode 100644 index 0000000..1f526c7 --- /dev/null +++ b/app/controllers/recruit_news_feeds_controller.rb @@ -0,0 +1,97 @@ +require "rss" +class RecruitNewsFeedsController < ApplicationController + include Admin::RecruitNewsHelper + def feed_add_remote + if params[:url].present? + uid = params[:uid].to_s + recruit_news_feed = RecruitNewsFeed.where(uid: uid).first + if !(recruit_news_feed.remote_urls.include?(params[:url])) + recruit_news_feed.remote_urls << params[:url] + recruit_news_feed.save + end + end + render :json => {success: true} + end + def feed_remove_remote + if params[:url].present? + uid = params[:uid].to_s + recruit_news_feed = RecruitNewsFeed.where(uid: uid).first + if recruit_news_feed.remote_urls.delete(params[:url]) + recruit_news_feed.save + end + end + render :json => {success: true} + end + def feed + uid = params[:uid].to_s + startdt = params[:start].blank? ? nil : params[:start] + enddt = params[:end].blank? ? nil : params[:end] + dt = params[:date].blank? ? nil : params[:date] + feed_cache = RecruitNewsFeedCache.where(uid: uid, start: startdt, end: enddt, date: dt) + feed_cache_old = feed_cache.all_of([{:invalid_date.ne=>nil},{:invalid_date.lte => Time.now}]).last + feed_cache.all_of([{:invalid_date.ne=>nil},{:invalid_date.lte => Time.now}]).destroy + count = feed_cache.count + if count > 1 + feed_cache.limit(count-1).destroy + end + feed_cache = feed_cache.first + anns = '' + if feed_cache.nil? + anns = RecruitNewsFeed.where(uid: uid).first.generate_one_cache_timeout(startdt: startdt,enddt: enddt,dt: dt,base_url: request.base_url,timeout: 20) + anns = (feed_cache_old.content rescue "") if anns.nil? + else + anns = feed_cache.content + end + render :json => anns + end + + def rssfeed + uid = params[:uid].to_s + @bf = RecruitNewsFeed.find_by(:uid => uid) rescue nil + if !@bf.nil? + tags = @bf.tag_ids + if !tags.empty? + @recruit_news = RecruitNews.can_display_and_sorted.filter_by_tags(tags) + else + @recruit_news = RecruitNews.can_display_and_sorted + end + categories = @bf.category_ids + if !categories.empty? + @recruit_news = @recruit_news.filter_by_categories(categories) + end + else + @recruit_news = [] + end + respond_to do |format| + format.html {redirect_to "/xhr/recruit_news/rssfeed/#{@bf.uid}.rss"} + format.rss + end + end + + def feeds + feeds = [] + RecruitNewsFeed.all.each do |bf| + feed = {} + feed["title_translations"] = bf.title_translations + feed["uid"] = bf.uid + feed["url"] = "#{request.base_url}/xhr/recruit_news/feed/#{bf.uid}" + feed["xml_url"] = "#{request.base_url}/xhr/recruit_news/rssfeed/#{bf.uid}.rss" + feed["tags"] = [] + bf.tag_ids.each do |t| + tag = Tag.find(t) + d = {} + d["name_translations"] = tag.name_translations + feed["tags"] << d + end + feeds << feed + end + render :json => {"feeds" => feeds}.to_json + end + +end + + + + + + diff --git a/app/controllers/recruit_news_mods_controller.rb b/app/controllers/recruit_news_mods_controller.rb new file mode 100644 index 0000000..ea23d34 --- /dev/null +++ b/app/controllers/recruit_news_mods_controller.rb @@ -0,0 +1,1031 @@ +class RecruitNewsModsController < ApplicationController + include RecruitNewsHelper + DefaultImgSrc = "/assets/recruit_news-default.jpg\" onerror=\"this.src="/assets/recruit_news-default-2.jpg";this.onerror='';" + + def initialize + super + @app_title = 'recruit_news_mod' + #self.request = OrbitHelper.request + end + def index + RecruitNews.remove_expired_status + params = @params = OrbitHelper.params + page = @page || Page.where(url: params['url']).first + @enable_search_flag = false + @image_version = 'thumb' + if page.respond_to?(:select_option_items) + module_app = ModuleApp.where(key: @app_title).first + @show_option_items = nil + if module_app && page.respond_to?(:select_option_items) + @show_option_items = module_app.show_option_items + end + I18n.with_locale(:en) do + page.select_option_items.each do |select_option_item| + if !(@show_option_items.nil?) + case select_option_item.field_name + when @show_option_items.keys[1].to_s + value = YAML.load(select_option_item.value) + if value[:en] == t('recruit_news.yes') + @enable_search_flag = true + end + when @show_option_items.keys[4].to_s + value = YAML.load(select_option_item.value) + tmp = value[:en] + if tmp == t('recruit_news.small_size') + @image_version = 'thumb' + elsif tmp == t('recruit_news.medium_size') + @image_version = 'mobile' + elsif tmp == t('recruit_news.orignal_size') + @image_version = 'orignal' + end + end + end + end + end + end + + sorted,total_pages = get_sorted_recruit_news + recruit_news = sorted.collect do |a| + if a["source-site"].blank? + statuses = a.statuses_with_classname.collect do |status| + { + "status" => status["name"], + "status-class" => "status-#{status['classname']}" + } + end + locale = OrbitHelper.get_site_locale.to_s + files = a.recruit_news_files.to_fronted(locale) + links = a.recruit_news_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue [] + author = User.find(a.create_user_id).member_profile.name rescue "" + desc = a.image_description + desc = (desc.blank? ? "RecruitNews image" : desc) + link_to_show = a.is_external_link ? a.external_link : OrbitHelper.url_to_show(a.to_param) + target = a.is_external_link ? "_blank" : "_self" + title = a.title_plain_text + title = 'no content' if title.blank? + event_time = a.event_time_formated_for_frontend + event_time_formated = a.event_time_formated + if @image_version == 'thumb' + image_url = a.image.thumb.url + elsif @image_version == 'mobile' + image_url = a.image.mobile.url + else + image_url = a.image.url + end + + { + "department" => author, + "recruit_news_links" => links, + "recruit_news_files" => files, + "title" => a.title, + "speaker" => a.speaker, + "speaker-css" => (a.speaker.blank? ? "display: none;" : ""), + "place" => a.place, + "place-css" => (a.place.blank? ? "display: none;" : ""), + "host" => a.host, + "host-css" => (a.host.blank? ? "display: none;" : ""), + "notes" => a.notes, + "source-site" => "", + "source-site-title" => "", + "source-site-link" => "", + "subtitle" => a.subtitle, + "statuses" => statuses, + "category" => (a.category.title rescue ""), + "postdate" => event_time, + "event_start_date" => a.event_date_frontend, + "event_end_date" => a.event_end_date_frontend, + "event-time-formated" => event_time_formated, + "event-time-css" => (event_time_formated.blank? ? "display: none;" : ""), + "author" => author, + "is_top" => (a.is_top? ? 1 : 0), + "link_to_show" => link_to_show+"\" title=\"#{title}\"", + "target" => target, + "img_src" => image_url || DefaultImgSrc, + "img_description" => desc, + "more" => t("recruit_news.more"), + "view_count" => a.view_count, + "orbithashtags" => a.hashtags_for_frontend + } + else + a + end + end + #If no data , hide title&table + if sorted.count == 0 + display = "hide" + end + # recruit_news = recruit_news.concat(feeds_recruit_news) + # total_pages = recruit_news.total_pages + + + { + "recruit_news" => recruit_news, + "extras" => { + "widget-title" =>t('recruit_news.recruit_news'), + "category-head" => RecruitNewsCustomTitle.get_trans('category'), + "title-head" => RecruitNewsCustomTitle.get_trans('title'), + "speaker-head" => RecruitNewsCustomTitle.get_trans('speaker'), + "place-head" => RecruitNewsCustomTitle.get_trans('place'), + "host-head" => RecruitNewsCustomTitle.get_trans('host'), + "notes-head" => RecruitNewsCustomTitle.get_trans('notes'), + "event_date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "event_start_date-head" => RecruitNewsCustomTitle.get_trans('start_date'), + "event_end_date-head" => RecruitNewsCustomTitle.get_trans('end_date'), + "status-head" => t('recruit_news.table.status'), + "author-head" => t('recruit_news.table.author'), + "subtitle-head" => t('recruit_news.table.sub_title'), + "link-head" => t('recruit_news.table.link'), + "file-head" => t('recruit_news.table.file'), + "view-count-head" => t('recruit_news.table.view_count'), + "display" => display, + "department-head" => t('recruit_news.table.department') + }, + "total_pages" => total_pages + } + end + + def random_recruit_news_widget + pack_data(true) + end + + def widget + pack_data() + end + + def tag_cloud + ma = ModuleApp.where(:key => "recruit_news_mod").first + temp = [] + ma.tags.each do |tag| + t1 = tag.taggings.collect{|t| t.taggable_id.to_s} + count = RecruitNews.where(:id.in => t1).can_display_and_sorted.count + temp << { + "tag-name" => tag.name, + "count" => count, + "tag-url" => OrbitHelper.widget_more_url + "?tags[]=" + tag.id.to_s + } + end + max = temp.max_by{|t| t["count"]}["count"] + tags = [] + temp.each do |tag| + if tag["count"] > 0 + percent = (tag["count"] * 100) / max + font_size = ((percent / 10).round) + 16 + tag["font-size"] = font_size + tags << tag + end + end + { + "tags" => tags, + "extras" => {} + } + end + def pack_data(is_random=false) + cats = OrbitHelper.widget_categories || [] + tags = OrbitHelper.widget_tags || [] + tags = ['all'] if tags.blank? + subpart = OrbitHelper.get_current_widget + get_tabs_option + recruit_news = [] + use_tag = false + tags = tags.collect{|tag| tag.to_s} + cats = cats.collect{|cat| cat.to_s} + if @tab_option == 0 + recruit_news = get_recruit_news_for_pack_data(cats,tags,nil,is_random) + else + if cats.count != 1 || tags == ["all"] + cats.each do |cat| + recruit_news = recruit_news + get_recruit_news_for_pack_data([cat],tags,'',is_random) + end + else + tags.each do |tag| + recruit_news = recruit_news + get_recruit_news_for_pack_data(cats,[tag],tag,is_random) + end + use_tag = true + end + end + mp = (recruit_news[0]["img_src"] rescue "") + mpd = (recruit_news[0]["img_description"] rescue "") + if @tab_option == 1 + if use_tag + tags = ["all"] + tags + else + cats = ["all"] + cats + end + recruit_news = sort_recruit_news(recruit_news) + end + cats = cats.uniq + tags = tags.uniq + tags_translations = {'all' => I18n.t(:all)} + Tag.where(:id.in => tags).pluck(:id, :name).each{|id, title_translations| + tags_translations[id.to_s] = title_translations[I18n.locale] + } + cats_translations = {'all' => I18n.t(:all)} + Category.where(:id.in => cats).pluck(:id, :title).each{|id, title_translations| + cats_translations[id.to_s] = title_translations[I18n.locale] + } + cats_relations = cats_translations.map{|cat_id,t| + if cat_id == "all" + t = "all" + end + [cat_id,t] + }.to_h + home_page = Page.first + page = nil + locale = I18n.locale.to_s + if home_page.respond_to?(:find_page) + page = home_page.find_page(:page_id=> subpart.read_more_page_id,:enabled_for=>locale).first rescue nil + page = home_page.find_page(:module=>"recruit_news_mod",:enabled_for=>locale).first rescue nil if page.nil? + else + page = Page.where(:page_id=> subpart.read_more_page_id,:enabled_for=>locale).first rescue nil + page = Page.where(:module=>"recruit_news_mod",:enabled_for=>locale).first rescue nil if page.nil? + end + all_cats = cats.dup + all_cats.delete "all" + if all_cats.count == 0 + all_cats = ["all"] + end + all_tags = tags.dup + all_tags.delete "all" + if all_tags.count == 0 + all_tags = ["all"] + end + max_all_count = [OrbitHelper.widget_data_count,recruit_news.count].min + if @tab_option != 0 + OrbitHelper.set_widget_title(OrbitHelper.widget_title + + "
" + + "
    " + + (use_tag ? tags.map.with_index{|tag,i| + read_more_url = "/#{locale + page.url}" rescue "" + read_more_url = read_more_url + "?" + {"category"=>all_cats,"tags"=>(tag == 'all' ? all_tags : [tag])}.to_param if read_more_url != "" + read_more_text = I18n.t("recruit_news.more") + if tag != "all" + begin + read_more_text = I18n.t("recruit_news.more_") + tags_translations[tag] + rescue + nil + end + end + "
  • #{tags_translations[tag]}
  • " + }.join("") : cats.map.with_index{|cat,i| + read_more_url = "/#{locale + page.url}" rescue "" + read_more_url = read_more_url + "?" + {"category"=>(cat == 'all' ? all_cats : cat)}.to_param if read_more_url != "" + read_more_text = I18n.t("recruit_news.more") + if cat != "all" + begin + read_more_text = I18n.t("recruit_news.more_") + cats_translations[cat] + rescue + nil + end + end + "
  • #{cats_translations[cat]}
  • " + }.join("")) + + "
" + ) + filter_attr = (use_tag ? 'data-tags' : 'data-category') + extra_html = ' + + + + ' + else + read_more_text = I18n.t("recruit_news.more") + if cats.count == 1 && cats[0] != "all" + begin + read_more_text = I18n.t("recruit_news.more_") + ((all_tags.count == 1 && all_tags[0] != 'all') ? tags_translations[tags[0]] : cats_translations[cats[0]]) + rescue + nil + end + end + extra_html = " + + " + end + if (@read_more_option != 0 rescue false) + extra_html += " + + " + end + extra_after_html = "" + if @all_setting_option == 0 && @tab_option == 1 + extra_after_html = " + + " + end + if @tab_option == 0 + read_more_url = "/#{locale + page.url}" rescue "" + read_more_url = read_more_url + "?" + {"category"=>all_cats,"tags"=>all_tags}.to_param if read_more_url != "" + extra_after_html += " + + " + end + { + "recruit_news" => recruit_news, + "extras" => { + "more_url"=>OrbitHelper.widget_more_url, + "main_picture" => mp, + "main_picture_description" => mpd, + "category-head" => RecruitNewsCustomTitle.get_trans('category'), + "title-head" => RecruitNewsCustomTitle.get_trans('title'), + "speaker-head" => RecruitNewsCustomTitle.get_trans('speaker'), + "place-head" => RecruitNewsCustomTitle.get_trans('place'), + "host-head" => RecruitNewsCustomTitle.get_trans('host'), + "notes-head" => RecruitNewsCustomTitle.get_trans('notes'), + "event_date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "event_start_date-head" => RecruitNewsCustomTitle.get_trans('start_date'), + "event_end_date-head" => RecruitNewsCustomTitle.get_trans('end_date'), + "author-head" => t('recruit_news.table.author'), + "status-head" => t('recruit_news.table.status'), + "subtitle-head" => t('recruit_news.table.sub_title'), + "link-head" => t('recruit_news.table.link'), + "file-head" => t('recruit_news.table.file'), + "read_more" => read_more_url, + "read_more_text" => "read more", + "extra_brefore_html" => extra_html, + "extra_after_html" => extra_after_html, + "calendar_title" => get_calendar_title, + "widget_title" => subpart.title, + 'widget_title_class' => subpart.title.blank? ? 'center' : '', + } + } + end + def get_tabs_option + subpart = OrbitHelper.get_current_widget + tab_options = ["not_enable_tabs","enable_tabs_with_categories_include_all","enable_tabs_with_categories"] + read_more_options = ['default','upper_left','lower_left','upper_right','lower_right'] + all_setting_options = ['the_same_as_data_count','display_all_in_other_tabs'] + @tab_option = 0 + @read_more_option = 0 + @all_setting_option = 0 + @image_version = 'thumb' + @show_today_data_first = false + @show_options = nil + if subpart.methods.include? 'select_options'.to_sym + module_app = ModuleApp.where(key: 'recruit_news_mod').first + if module_app + @show_options = module_app.show_options + end + subpart.select_options.each do |select_option| + if !(@show_options.nil?) + value = YAML.load(select_option.value) + tmp = value[:en] + I18n.with_locale(:en) do + case select_option.field_name + when @show_options.keys[0].to_s + if tmp == t('recruit_news.small_size') + @image_version = 'thumb' + elsif tmp == t('recruit_news.medium_size') + @image_version = 'mobile' + elsif tmp == t('recruit_news.orignal_size') + @image_version = 'orignal' + end + when @show_options.keys[1].to_s + tab_options.each_with_index do |option,i| + if tmp == t("recruit_news.#{option}") + @tab_option = i + break + end + end + when @show_options.keys[2].to_s + read_more_options.each_with_index do |option,i| + if tmp == t("recruit_news.#{option}") + @read_more_option = i + break + end + end + when @show_options.keys[3].to_s + all_setting_options.each_with_index do |option,i| + if tmp == t("recruit_news.#{option}") + @all_setting_option = i + break + end + end + when @show_options.keys[4].to_s + if tmp == t('no_') + @show_today_data_first = false + else + @show_today_data_first = true + end + end + end + end + end + end + end + def get_recruit_news_for_pack_data(cats,tags,set_tags=nil,is_random = false) + if tags.blank? + tags = ["all"] + end + if OrbitHelper.params["hash"].present? + hashtag = OrbitHelper.params["hash"] + end + subpart = OrbitHelper.get_current_widget + widget_data_count = OrbitHelper.widget_data_count + recruit_news_cache = RecruitNewsCache.where(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + widget_data_count.to_s,locale: I18n.locale.to_s) + devide_flag = (!(defined? SiteFeed).nil?) + recruit_news_cache.where(:invalid_date.lte => Time.now).destroy + count = recruit_news_cache.count + if count > 1 + recruit_news_cache.limit(count-1).destroy + end + if recruit_news_cache.count == 0 || is_random + RecruitNews.remove_expired_status + uid = OrbitHelper.params[:uid].to_s rescue "" + recruit_news_for_locale = RecruitNews.where(:title.nin => ["",nil], :uid.ne => uid).is_approved_and_show.filter_cats_and_tags(cats,tags) + if @show_today_data_first + sorted_recruit_news = recruit_news_for_locale.can_display_and_sorted_according_today + else + sorted_recruit_news = recruit_news_for_locale.can_display_and_sorted + end + if !is_random + sorted_recruit_news = sorted_recruit_news.limit(widget_data_count).to_a + first_deadline = sorted_recruit_news.collect{|v| v[:deadline]}.compact.sort[0] + first_postdate = recruit_news_for_locale.open_in_future.limit(1).pluck(:postdate)[0] + if @show_today_data_first + sorted_recruit_news = sorted_recruit_news.reverse + invalid_date = [first_postdate,first_deadline, (Date.today + 1.day).to_time].compact.sort[0] + else + invalid_date = [first_postdate,first_deadline].compact.sort[0] + end + if devide_flag + top_recruit_news = sorted_recruit_news.select{|v| v.is_top}.map{|v| data_to_human_type(v,set_tags)} + not_top_recruit_news = sorted_recruit_news.select{|v| !v.is_top}.map{|v| data_to_human_type(v,set_tags)} + RecruitNewsCache.create(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + widget_data_count.to_s,locale: I18n.locale.to_s,filter_result: {top: top_recruit_news,not_top: not_top_recruit_news},invalid_date: invalid_date) + else + recruit_news = sorted_recruit_news.map{|v| data_to_human_type(v,set_tags)} + RecruitNewsCache.create(parent_id: subpart.id.to_s + cats.to_s + tags.to_s + widget_data_count.to_s,locale: I18n.locale.to_s,filter_result: recruit_news,invalid_date: invalid_date) + end + else + if devide_flag + recruit_news = sorted_recruit_news.sample(widget_data_count) + top_recruit_news = recruit_news.select{|v| v.is_top}.map{|v| data_to_human_type(v,set_tags)} + not_top_recruit_news = recruit_news.select{|v| !v.is_top}.map{|v| data_to_human_type(v,set_tags)} + else + recruit_news = sorted_recruit_news.sample(widget_data_count).map{|v| data_to_human_type(v,set_tags)} + end + end + elsif devide_flag + now_recruit_news = recruit_news_cache.first.filter_result + top_recruit_news = now_recruit_news[:top] + not_top_recruit_news = now_recruit_news[:not_top] + else + recruit_news = recruit_news_cache.first.filter_result + end + if devide_flag + feeds_recruit_news, _ = get_feed_recruit_news("widget",nil,cats,widget_data_count - top_recruit_news.count) + top_recruit_news += feeds_recruit_news.select{|v| v['is_top'] == true} + top_recruit_news = sort_recruit_news(top_recruit_news) + rest_count = widget_data_count - top_recruit_news.count + if rest_count <= 0 + recruit_news = top_recruit_news.take(widget_data_count) + else + rest_all_recruit_news = feeds_recruit_news.select{|v| v['is_top'] != true} + not_top_recruit_news.take(rest_count) + rest_recruit_news = sort_recruit_news(rest_all_recruit_news).take(rest_count) + recruit_news = top_recruit_news + rest_recruit_news + end + end + recruit_news + end + + def get_file + @url = request.path + begin + if @url.match(/\/\.\./) + render :file => "#{Rails.root}/app/views/errors/404.html", :layout => false, :status => :not_found, :content_type => 'text/html' + return + end + file = RecruitNewsFile.find(params[:id]) + if File.basename(file.file.path) != URI.decode(params[:f_name]) + render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html' + return + end + @url = file.file.url + if file.can_access?(OrbitHelper.current_user) + @path = file.file.path rescue "" + @filename = @path.split("/").last + @ext = @path.split("/").last.to_s.split(".").last + if @ext == "png" || @ext == "jpg" || @ext == "bmp" || @ext == "pdf" + render "archives/download_file.html",:layout=>false + else + if (current_site.accessibility_mode rescue false) + render "archives/redirect_to_file.html",:layout=>false + return + else + send_file(@path) + return + end + end + else + render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html' + return + end + rescue + render :file => "#{Rails.root}/app/views/errors/404.html", :layout => false, :status => :not_found, :content_type => 'text/html' + return + end + end + + def show_local_recruit_news(uid, is_preview) + locale = OrbitHelper.get_site_locale.to_s + if is_preview + recruit_news = RecruitNews.where(:uid => uid).first + else + recruit_news = RecruitNews.can_display_and_sorted.where(:uid => uid).first + end + recruit_news = RecruitNews.where(:uid => uid).first if recruit_news.nil? + return nil if recruit_news.nil? + url_to_edit = OrbitHelper.user_can_edit?(recruit_news) ? "/admin/recruit_news/#{recruit_news.id.to_s}/edit" : "" + + access_level = OrbitHelper.user_access_level? + + if !recruit_news.approved && (access_level != "manager" && access_level != "admin") + if RecruitNewsSetting.is_pro? + if !(access_level == "sub_manager" && RecruitNewsSetting.first.approvers.include?(OrbitHelper.current_user.id.to_s)) + return {} + end + elsif access_level != "sub_manager" + return {} + end + end + + return {} if (recruit_news.category.disable rescue false) + + tags = recruit_news.tags.map{|tag| { + "tag" => tag.name , + "url" => OrbitHelper.page_for_tag(tag) + } } rescue [] + files = recruit_news.recruit_news_files.to_fronted(locale) + links = recruit_news.recruit_news_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue [] + update_user = recruit_news.update_user.member_profile.name rescue "" + desc = recruit_news.image_description + desc = (desc.nil? || desc == "" ? "RecruitNews image" : desc) + + request = OrbitHelper.request + meta_desc = recruit_news.subtitle.nil? || recruit_news.subtitle == "" ? recruit_news.text[0..200] : recruit_news.subtitle + OrbitHelper.render_meta_tags([{"property" => "og:title", "content" => recruit_news.title},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:image", "content" => "#{request.base_url}#{recruit_news.image.url}"},{"property" => "og:type", "content" => "Article"}]) + + subtitle_ann = nil + img_src = nil + img_description = nil + subtitle_ann = recruit_news.subtitle if recruit_news.display_subtitle? + img_src = (recruit_news.image.thumb.url || DefaultImgSrc) if recruit_news.display_img? + img_description = recruit_news.image_description if (recruit_news.image_description.present?) && (recruit_news.display_img?) + event_carousel_images = recruit_news.event_carousel_images.map{|image| {"src"=>image.file.url,"description"=>image.description.to_s,"description_text"=>image.description_text }} + resume_btn_title = (I18n.locale.to_s =="zh_tw") ? "繼續播放" : "resume" + pause_btn_title = (I18n.locale.to_s =="zh_tw") ? "暫停播放" : "pause" + prev_btn_title = (I18n.locale.to_s =="zh_tw") ? "上一張" : "prev" + next_btn_title = (I18n.locale.to_s =="zh_tw") ? "下一張" : "next" + carousel_data = { + "event_carousel_images" => event_carousel_images, + "resume_btn_title" => resume_btn_title, + "pause_btn_title" => pause_btn_title, + "prev_btn_title" => prev_btn_title, + "next_btn_title" => next_btn_title, + "carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{recruit_news.carousel_image_width};margin: auto;"), + "carousel_count" => event_carousel_images.count} + carousel_html = "" + if carousel_data["carousel_count"] != 0 + carousel_image_type = recruit_news.carousel_image_type + ac = ActionController::Base.new() + carousel_html = ac.render_to_string(:partial=>'recruit_news_mods/carousels',:locals=>{:data=>carousel_data,:carousel_image_type=>carousel_image_type}) + end + begin + event_time = recruit_news.event_time_formated_for_frontend + rescue => e + puts e.to_s + event_time = "" + end + members = MemberProfile.find(recruit_news.other_member_profiles) + profiles = [] + members.each do |member| + profiles << { + "picture" => member.get_avatar, + "name" => member.name, + "autobiography" => member.autobiography + } + end + + { + "tags" => tags, + "recruit_news_files" => files, + "profiles" => profiles, + "recruit_news_links" => links, + "other_member_profiles" => recruit_news.get_other_member_profiles_names_for_frontend, + "data" => { + "title-head" => RecruitNewsCustomTitle.get_trans('title'), + "speaker-head" => RecruitNewsCustomTitle.get_trans('speaker'), + "place-head" => RecruitNewsCustomTitle.get_trans('place'), + "host-head" => RecruitNewsCustomTitle.get_trans('host'), + "notes-head" => RecruitNewsCustomTitle.get_trans('notes'), + "event_date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "event-time-css" => (event_time.blank? ? "display: none;" : ""), + "speaker-css" => (recruit_news.speaker.blank? ? "display: none;" : ""), + "host-css" => (recruit_news.host.blank? ? "display: none;" : ""), + "speaker" => recruit_news.speaker, + "host" => recruit_news.host, + "notes" => recruit_news.notes, + "title" => recruit_news.title, + "subtitle_ann" => subtitle_ann, + "update_user" => update_user, + "updated_at" => event_time, + "body" =>recruit_news.text, + "image" => recruit_news.image.url, + "img_src" => img_src, + "img_description" => img_description, + "hide_class" => recruit_news.display_img? ? recruit_news.image_display_class : ' hide', + "alt_title" => desc, + "resume_btn_title" => resume_btn_title, + "pause_btn_title" => pause_btn_title, + "prev_btn_title" => prev_btn_title, + "next_btn_title" => next_btn_title, + "carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{recruit_news.carousel_image_width};margin: auto;"), + "carousel_count" => event_carousel_images.count, + "place_text" => (recruit_news.place.blank? ? "" : "#{RecruitNewsCustomTitle.get_trans("place")}: #{recruit_news.place}"), + "place-css" => (recruit_news.place.blank? ? "display: none;" : ""), + "carousel_html" => carousel_html, + "orbithashtags" => recruit_news.hashtags_for_frontend, + }, + "impressionist" => (recruit_news.is_preview ? nil : recruit_news), + "url_to_edit"=>url_to_edit + } + end + + def show_feed_recruit_news(uid) + recruit_news = OrbitHelper.get_from_feed(uid) + locale = OrbitHelper.get_site_locale.to_s + url_to_edit = "#" + return nil if recruit_news.blank? + tags = [] + + recruit_news["tags"].each{|tag| + t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil + if t.nil? + I18n.locale = (locale == "en" ? :zh_tw : :en) + t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil + I18n.locale = locale.to_sym + end + tags << { + "tag" => tag["name_translations"][locale], + "url" => (t.nil? ? "#" : OrbitHelper.page_for_tag(t)) + } + } + + files = recruit_news["recruit_news_files"].map{|file| { "file_url" => file["file_url"], "file_title" => file["file_title_translations"][locale] } } rescue [] + + files.each do |file| + if file["file_url"] =="" || file["file_url"] == nil + files.delete(file) + end + end + links = recruit_news["recruit_news_links"].map{|link| { "link_url" => link["link_url"], "link_title" => link["link_title_translations"][locale] } } rescue [] + + update_user = recruit_news["author"] + desc = recruit_news["image_description_translations"][locale] rescue "" + desc = (desc.nil? || desc == "" ? "RecruitNews image" : desc) + img_description = nil + img_description = recruit_news["image_description_translations"][I18n.locale] if recruit_news['display_img'] + img_src = nil + img_src = (recruit_news['image']['original'] || DefaultImgSrc) if recruit_news['display_img'] + subtitle_ann = recruit_news['subtitle_ann'] + request = OrbitHelper.request + if recruit_news["subtitle_translations"].present? + meta_desc = recruit_news["subtitle_translations"][locale] != "" ? recruit_news["subtitle_translations"][locale] : recruit_news["text_translations"][locale][0..200] rescue "" + else + meta_desc = "" + end + + metas = [{"property" => "og:title", "content" => recruit_news["title_translations"][locale]},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:type", "content" => "Article"}] + if recruit_news["image"]["original"].present? + image = recruit_news["image"] + metas << {"property" => "og:image", "content" => image["original"]} + if image["width"] + metas << {"property" => "og:image:width", "content" => image["width"].to_s} + end + if image["height"] + metas << {"property" => "og:image:height", "content" => image["height"].to_s} + end + end + OrbitHelper.render_meta_tags(metas) + + event_date = DateTime.parse(recruit_news["event_date"].to_s) rescue nil + event_end_date = DateTime.parse(recruit_news["event_end_date"].to_s) rescue nil + event_time = RecruitNewsSetting.event_time_formated_for_frontend(event_date, event_end_date) + event_carousel_images = Array(recruit_news["event_carousel_images"]) + resume_btn_title = (I18n.locale.to_s =="zh_tw") ? "繼續播放" : "resume" + pause_btn_title = (I18n.locale.to_s =="zh_tw") ? "暫停播放" : "pause" + prev_btn_title = (I18n.locale.to_s =="zh_tw") ? "上一張" : "prev" + next_btn_title = (I18n.locale.to_s =="zh_tw") ? "下一張" : "next" + carousel_data = { + "event_carousel_images" => event_carousel_images, + "resume_btn_title" => resume_btn_title, + "pause_btn_title" => pause_btn_title, + "prev_btn_title" => prev_btn_title, + "next_btn_title" => next_btn_title, + "carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{RecruitNewsSetting.last.carousel_image_width};margin: auto;"), + "carousel_count" => event_carousel_images.count} + carousel_html = "" + if carousel_data["carousel_count"] != 0 + carousel_image_type = recruit_news["carousel_image_type"].to_i + ac = ActionController::Base.new() + carousel_html = ac.render_to_string(:partial=>'recruit_news_mods/carousels',:locals=>{:data=>carousel_data,:carousel_image_type=>carousel_image_type}) + end + speaker = recruit_news["speaker_translations"][locale] + host = recruit_news["host_translations"][locale] + { + "tags" => tags, + "recruit_news_files" => files, + "recruit_news_links" => links, + "data" => { + "title" => recruit_news["title_translations"][locale], + "subtitle_ann" => subtitle_ann, + "update_user" => update_user, + "updated_at" => event_time, + "body" => recruit_news["text_translations"][locale], + "title-head" => RecruitNewsCustomTitle.get_trans('title'), + "speaker-head" => RecruitNewsCustomTitle.get_trans('speaker'), + "place-head" => RecruitNewsCustomTitle.get_trans('place'), + "host-head" => RecruitNewsCustomTitle.get_trans('host'), + "notes-head" => RecruitNewsCustomTitle.get_trans('notes'), + "event_date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "event-time-css" => (event_time.blank? ? "display: none;" : ""), + "speaker-css" => (speaker.blank? ? "display: none;" : ""), + "host-css" => (host.blank? ? "display: none;" : ""), + "speaker" => speaker, + "host" => host, + "notes" => (recruit_news["notes_translations"][locale].to_s rescue ""), + "image" => recruit_news["image"]["original"], + "img_src" => img_src, + "img_description" => img_description, + "hide_class" => recruit_news["display_img"] ? '' : ' hide', + "alt_title" => desc, + "resume_btn_title" => resume_btn_title, + "pause_btn_title" => pause_btn_title, + "prev_btn_title" => prev_btn_title, + "next_btn_title" => next_btn_title, + "carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{RecruitNewsSetting.last.carousel_image_width};margin: auto;"), + "carousel_count" => event_carousel_images.count, + "place_text" => (recruit_news["place"].blank? ? "" : "#{I18n.t("recruit_news.place")}: #{recruit_news["place"]}"), + "place-css" => (recruit_news["place"].blank? ? "display: none;" : ""), + "carousel_html" => carousel_html + }, + "impressionist" => nil, + "url_to_edit" => url_to_edit + } + end + + def show + params = OrbitHelper.params + uid = params[:uid].to_s + if OrbitHelper.is_object_from_feed?(uid) + show_feed_recruit_news(uid) + else + show_local_recruit_news(uid, (params["preview"] == "true" ? true : false)) + end + end + def show_widget + @type = "show_widget" + @show_page = params[:show_page] + if params[:tags].nil? + @tags = ['all'] + else + @tags = params[:tags] + end + if params[:categories].nil? + @categories = ['all'] + else + @categories = params[:categories] + end + OrbitHelper.set_site_locale(I18n.locale) + OrbitHelper.set_current_widget_module("recruit_news_mod") + OrbitHelper.set_params(params,current_user) + RecruitNews.remove_expired_status + OrbitHelper.set_page_number(params[:page_no].to_i) + OrbitHelper.set_page_data_count((params[:data_count].blank? ? 10 : params[:data_count].to_i)) + sorted,total_pages = get_sorted_recruit_news + recruit_news = sorted.collect do |a| + if a["source-site"].blank? + statuses = a.statuses_with_classname.collect do |status| + { + "status" => status["name"], + "status-class" => "status-#{status['classname']}" + } + end + locale = I18n.locale.to_s + files = a.recruit_news_files.to_fronted(locale) + links = a.recruit_news_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue [] + author = User.find(a.create_user_id).member_profile.name rescue "" + desc = a.image_description + desc = (desc.blank? ? "RecruitNews image" : desc) + link_to_show = (a.is_external_link ? a.external_link : OrbitHelper.url_to_show(a.to_param)) rescue "" + target = a.is_external_link ? "_blank" : "_self" + title = a.title_plain_text + title = 'no content' if title.blank? + event_time = a.event_time_formated_for_frontend + event_time_formated = a.event_time_formated + { + "department" => author, + "recruit_news_links" => links, + "recruit_news_files" => files, + "title" => a.title, + "speaker-css" => (a.speaker.blank? ? "display: none;" : ""), + "host-css" => (a.host.blank? ? "display: none;" : ""), + "place-css" => (a.place.blank? ? "display: none;" : ""), + "event-time-formated" => event_time_formated, + "event-time-css" => (event_time_formated.blank? ? "display: none;" : ""), + "speaker" => a.speaker, + "place" => a.place, + "host" => a.host, + "notes" => a.notes, + "source-site" => "", + "source-site-title" => "", + "source-site-link" => "", + "subtitle" => a.subtitle, + "statuses" => statuses, + "category" => (a.category.title rescue ""), + "postdate" => event_time, + "event_start_date" => a.event_date_frontend, + "event_end_date" => a.event_end_date_frontend, + "author" => author, + "is_top" => (a.is_top? ? 1 : 0), + "link_to_show" => link_to_show+"\" title=\"#{title}\"", + "target" => target, + "img_src" => a.image.thumb.url || DefaultImgSrc, + "img_description" => desc, + "more" => t("recruit_news.more"), + "view_count" => a.view_count + } + else + a + end + end + #If no data , hide title&table + if sorted.count == 0 + display = "hide" + end + # recruit_news = recruit_news.concat(feeds_recruit_news) + # total_pages = recruit_news.total_pages + + + @data = { + "recruit_news" => recruit_news, + "extras" => { + "widget-title" =>t('recruit_news.recruit_news'), + "category-head" => RecruitNewsCustomTitle.get_trans('category'), + "title-head" => RecruitNewsCustomTitle.get_trans('title'), + "speaker-head" => RecruitNewsCustomTitle.get_trans('speaker'), + "place-head" => RecruitNewsCustomTitle.get_trans('place'), + "host-head" => RecruitNewsCustomTitle.get_trans('host'), + "notes-head" => RecruitNewsCustomTitle.get_trans('notes'), + "event_date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "date-head" => RecruitNewsCustomTitle.get_trans('event_date'), + "event_start_date-head" => RecruitNewsCustomTitle.get_trans('start_date'), + "event_end_date-head" => RecruitNewsCustomTitle.get_trans('end_date'), + "status-head" => t('recruit_news.table.status'), + "author-head" => t('recruit_news.table.author'), + "subtitle-head" => t('recruit_news.table.sub_title'), + "link-head" => t('recruit_news.table.link'), + "file-head" => t('recruit_news.table.file'), + "view-count-head" => t('recruit_news.table.view_count'), + "display" => display, + "department-head" => t('recruit_news.table.department') + }, + "total_pages" => total_pages + } + render :layout => false + end + + def agenda + I18n.with_locale(params[:locale]||I18n.locale) do + if !params[:subpart_id].nil? + subpartid = params[:subpart_id] + subpart = SubPart.find(subpartid) + all_cats = subpart.categories + all_cats = ['all'] if all_cats.length==0 + all_tags = subpart.tags + all_tags = ['all'] if all_tags.length==0 + page = Page.where(:page_id=> subpart.read_more_page_id).first rescue nil + page = Page.where(:module => "recruit_news_mod").first rescue nil if page.nil? + read_more_url_root = "/#{I18n.locale.to_s + page.url}" rescue "" + read_more_url = read_more_url_root + "?" + {"category"=>all_cats,"tags"=> all_tags}.to_param if read_more_url != "" + else + page = Page.where(:module => "recruit_news_mod").first + read_more_url_root = "/#{I18n.locale.to_s + page.url}" rescue "" + end + if params[:unix_start].present? && params[:unix_end].present? + agenda_start = Time.at(params[:unix_start].to_i).utc.to_s + agenda_end = Time.at(params[:unix_end].to_i).utc.to_s + events = RecruitNews.agenda_events(agenda_start,agenda_end,read_more_url_root) + end + render json: {"events" => events,"calendar_title"=>get_calendar_title(Time.at(params[:month_start].to_i).utc)}.to_json({"frontend" => true}) + end + end + + def get_calendar_title(now_date=nil) + now_date = Time.now.utc if now_date.nil? + month_name = I18n.locale.to_s=='zh_tw' ? now_date.month : I18n.t("recruit_news.month_name.#{now_date.month}") + I18n.t("recruit_news.calendar_title",year: now_date.year,month: month_name) + end +end diff --git a/app/controllers/recruit_news_module_controller.rb b/app/controllers/recruit_news_module_controller.rb new file mode 100644 index 0000000..7095384 --- /dev/null +++ b/app/controllers/recruit_news_module_controller.rb @@ -0,0 +1,129 @@ +# encoding: utf-8 +class RecruitNewsModuleController < ApplicationController + before_filter :set_I18n + + def get_recruit_news + page = Page.where(:module => "recruit_news").first rescue nil + + # 頁次 + page_num = params[:page_num].blank? ? 0 : params[:page_num].to_i + # 每頁顯示的則數 + per_page = params[:per_page].blank? ? 10 : params[:per_page].to_i + per_page = per_page > 0 ? per_page : 10 + + I18n.locale = :zh_tw + if !params[:keyword].blank? + keyword = Regexp.new(".*"+params[:keyword]+".*") + recruit_news = RecruitNews.any_of({:title=>keyword},{:subtitle=>keyword},{:text=>keyword}) + else + recruit_news = RecruitNews.all + end + + if !params[:category].blank? + module_id = ModuleApp.where(:key=>"recruit_news").first.id + category = Regexp.new(".*"+params[:category]+".*") + category_id = Category.where(:title => category, :module_app_id => module_id).first.id + recruit_news = recruit_news.where(:category_id => category_id) + else + recruit_news = recruit_news + end + + recruit_news = recruit_news.where(:is_preview.in=>[false,nil]) + recruit_news = recruit_news.where(:approved.ne => false , :rejected.ne => true) + recruit_news = recruit_news.where(:postdate.lt=>Time.now) + recruit_news = recruit_news.desc( :is_top, :postdate).page(page_num).per(per_page) + + recruit_news = recruit_news.collect do |b| + image = request.protocol + request.host_with_port + b.image.url rescue nil + + links = b.recruit_news_links.collect do |bl| + { + "title" => bl.title_translations, + "url" => bl.url + } + end rescue nil + + files = b.recruit_news_files.collect do |bf| + file = request.protocol + request.host_with_port + bf.file.url rescue nil + { + "title" => bf.title_translations, + "description" => bf.description_translations, + "file" => file + } + end rescue nil + + ts = b.tags.collect do |t| + { + "name" => t.name_translations + } + end rescue nil + + text = {"en" => "", "zh_tw" => ""} + text["en"] = (b.text_translations["en"].nil? ? "" :smart_convertor(b.text_translations["en"])) + text["zh_tw"] = (b.text_translations["zh_tw"].nil? ? "" : smart_convertor(b.text_translations["zh_tw"])) + + author = User.find(b.create_user_id).member_profile.name rescue "" + + { + "id" => b.id.to_s, + "title" => b.title_translations, + "subtitle" => b.subtitle_translations, + "text" => text, + "postdate" => b.postdate, + "deadline" => b.deadline, + "category" => b.category.title_translations, + "tags" => ts, + "image" => image, + "links" => links, + "files" => files, + "author" => author, + "url" => "/#{I18n.locale.to_s + page.url}/#{b.to_param}" + } + + end + + # 計算總筆數 Start + if !params[:keyword].blank? + keyword = Regexp.new(".*"+params[:keyword]+".*") + recruit_news = RecruitNews.any_of({:title=>keyword},{:subtitle=>keyword},{:text=>keyword}) + else + recruit_news = RecruitNews.all + end + recruit_news = recruit_news.where(:is_preview.in=>[false,nil]) + recruit_news = recruit_news.where(:approved.ne => false , :rejected.ne => true) + recruit_news = recruit_news.where(:postdate.lt=>Time.now) + total_pages = recruit_news.count + # End + + render :json => { + "recruit_news" => recruit_news, + "recruit_news_count" => recruit_news.count, + "page_num" => page_num, + "total_pages" => total_pages, + }.to_json + end + + def smart_convertor(text) + html_string = text + links = html_string.scan(/img.*?src="(.*?)"/i) + links.each do |link| + l = link.first + new_link = nil + if l.starts_with?("/") + new_link = request.protocol + request.host_with_port + l + elsif l.starts_with?("..") + l1 = l.gsub("../","") + new_link = request.protocol + request.host_with_port + "/" + l1 + end + html_string = html_string.sub(l,new_link) if !new_link.nil? + end + return html_string + end + + protected + + def set_I18n + I18n.locale = params[:lang] if params[:lang].present? + end + +end diff --git a/app/helpers/.keep b/app/helpers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/helpers/admin/recruit_news_helper.rb b/app/helpers/admin/recruit_news_helper.rb new file mode 100644 index 0000000..0e8a3a0 --- /dev/null +++ b/app/helpers/admin/recruit_news_helper.rb @@ -0,0 +1,424 @@ +require "net/http" +require "uri" +require 'json' + +module Admin::RecruitNewsHelper + module FormHelper + extend self + extend ActionView::Helpers::FormTagHelper + extend ActionView::Helpers::FormOptionsHelper + extend ActionView::Helpers::DateHelper + extend ActionView::Helpers::TagHelper + extend ActionView::Helpers::RenderingHelper + extend ActionView::Context + extend OrbitBasis::RenderAnywhere + extend ActionView::Helpers::UrlHelper + extend OrbitFormHelper + extend Ckeditor::Helpers::FormHelper + def available_locales + @available_locales = @available_locales || Site.first.in_use_locales || I18n.available_locales + end + def set_input_name(input_name) + @input_name = input_name + end + + def get_input_name + @input_name.to_s + end + def create_lang_panel(field) + tmp2 = content_tag(:div,:class => 'btn-group', :data=>{:toggle=>"buttons-radio"}) do + available_locales.collect do |key| + link_entry_ary = ["##{field}","_#{key}"] + link_entry = link_entry_ary.join + link_to(I18n.t(key),link_entry,:data=>{:toggle=>"tab"},:class=>"btn #{(key == I18n.locale ? "active" : nil)}",:for=>key) + end.join.html_safe + end + end + def multiple_lang_tag(index1,type_of_tag,field,value=nil,custom_options={},combine_element='',exteral_options={},sortable=false) + if !index1.nil? + all_field = (get_input_name + "[#{index1}][#{field}][parant]").gsub(/\[/,'_').gsub(/\]/,'') + else + all_field = (get_input_name + "[#{field}][parant]").gsub(/\[/,'_').gsub(/\]/,'') + end + tmp = (available_locales.collect do |locale| + active_flag = ((locale == I18n.locale) ? ' in active' : '') + content_tag(:div,:class => "tab-content fade#{active_flag}",:id=>"#{all_field}_#{locale}") do + value_locale = value[locale.to_s] rescue nil + if !index1.nil? + self.__send__("#{type_of_tag}_tag","#{get_input_name}[#{index1}][#{field}][#{locale}]",value_locale,custom_options) + else + self.__send__("#{type_of_tag}_tag","#{get_input_name}[#{field}][#{locale}]",value_locale,custom_options) + end + end + end.join + create_lang_panel(all_field)).html_safe + combine_element + + if sortable + if exteral_options['style'].nil? + exteral_options['style'] = 'display: flex;align-items: center;flex-wrap: nowrap;' + else + exteral_options['style'] = exteral_options['style'] + 'display: flex;align-items: center;flex-wrap: nowrap;' + end + content_tag(:div,{:class => "tab-panel border"}.merge(exteral_options)) do + ("" +content_tag(:div) do + tmp + end).html_safe + end + else + content_tag(:div,{:class => "tab-panel"}.merge(exteral_options)) do + tmp + end + end + end + end + + def self.thead(field,center=false,enable_sort=true) + sort = field.to_s.include?('.') ? field.to_s.split('.')[1] : field.to_s + active = OrbitHelper.params[:sort].eql? sort + order = active ? (["asc", "desc"]-[OrbitHelper.params[:order]]).first : "asc" + arrow = (order.eql? "desc") ? "" : "" + klass = field.eql?(:title) ? "span5" : "span2" + th_data = (sort=="preview" || !enable_sort) ? RecruitNewsCustomTitle.get_trans(field) : "#{RecruitNewsCustomTitle.get_trans(field)} #{active ? arrow : ""}" + "
#{th_data}
+ + + <% @table_fields.each do |field| %> + <% + field_text = field.to_s.include?('.') ? t(field.to_s) : field.to_s + sort = field.to_s.split('.')[-1] + active = params[:sort].eql? sort + order = active ? (["asc", "desc"]-[params[:order]]).first : "asc" + arrow = (order.eql? "desc") ? "" : "" + klass = sort.eql?(:title) ? "span5" : "span2" + th_data = "#{field_text} #{active ? arrow : ""}" + %> + + <% end %> + + + + <% @recruit_news.each do |ev| %> + + + + + + + <% end %> + +
<%= th_data.html_safe %>
+ <%= number_field_tag nil,ev.sort_number,class: 'sort_number',step: 1 %> + + <%= ev.title.html_safe %> + + <%= format_value ev.event_date %> + + <%= format_value ev.postdate %> +
+
\ No newline at end of file diff --git a/app/views/admin/recruit_news/_feed.html.erb b/app/views/admin/recruit_news/_feed.html.erb new file mode 100644 index 0000000..e189531 --- /dev/null +++ b/app/views/admin/recruit_news/_feed.html.erb @@ -0,0 +1,83 @@ + + + <%= feed.title %> +
+ +
+ + +
+
+ +
+
+ + +
+
+ +
+
+ + + RSS Feed + + + JSON Feed + + \ No newline at end of file diff --git a/app/views/admin/recruit_news/_feed_form.html.erb b/app/views/admin/recruit_news/_feed_form.html.erb new file mode 100644 index 0000000..3ac34a8 --- /dev/null +++ b/app/views/admin/recruit_news/_feed_form.html.erb @@ -0,0 +1,61 @@ +<%= form_for @recruit_news_feed, url: admin_recruit_news_createfeed_path, html: {class: "form-horizontal main-forms"} do |f| %> +
+ <% @site_in_use_locales.each do |locale| %> + <%= f.fields_for :title_translations do |f| %> +
+ +
+ <%= f.text_field locale, data: {"fv-validation" => "required;","fv-messages" => "Cannot be empty.;"}, value: (@recruit_news_feed.title_translations[locale.to_s] rescue nil) %> +
+
+ <% end %> + <% end %> +
+
+

<%=t(:tags)%>

+
+
+ <% @module_app.tags.each do |tag| %> + + <% end %> +
+
+
+
+

<%=t(:category)%>

+
+
+ <% @module_app.categories.each do |category| %> + + <% end %> +
+
+
+
+<% end %> + + \ No newline at end of file diff --git a/app/views/admin/recruit_news/_form.html.erb b/app/views/admin/recruit_news/_form.html.erb new file mode 100644 index 0000000..f089644 --- /dev/null +++ b/app/views/admin/recruit_news/_form.html.erb @@ -0,0 +1,780 @@ +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag "lib/main-forms" %> + <%= stylesheet_link_tag "lib/fileupload" %> + <%= stylesheet_link_tag "lib/main-list" %> +<% end %> + +<% content_for :page_specific_javascript do %> + <%= javascript_include_tag "lib/bootstrap-fileupload" %> + <%= javascript_include_tag "lib/bootstrap-datetimepicker" %> + <%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %> + <%= javascript_include_tag "lib/file-type" %> + <%= javascript_include_tag "lib/module-area" %> + <%= javascript_include_tag "form" %> +<% end %> + + +
+ + + + + +
+ + +
+ + +
+ +
+ <%= select_category(f, @module_app) %> +
+
+ + +
+ +
+ <%= f.datetime_picker :event_date, :no_label => true, :new_record => @recruit_news.new_record?, :data=>{"picker-type" => "range", "range" => "start"} %> +
+
+
+ +
+ <%= f.check_box :event_date_use_default_setting, :id=>"event_date_use_default_setting" %> +
+
+
+ +
+ <%= f.datetime_picker :event_end_date, :no_label => true, :new_record => @recruit_news.new_record?, :data=>{"picker-type" => "range", "range" => "start"} %> +
+
+
+ <%=t("recruit_news.event_date_setting")%> +
+ +
+ <%= f.check_box :including_day_of_the_week %> +
+
+
+ +
+ <%= f.check_box :including_time, :id=>"including_time" %> +
+
+
+ +
+ <%= f.check_box :hour_clock_24 %> +
+
+
+
+ +
+ <%= f.datetime_picker :postdate, :no_label => true, :new_record => @recruit_news.new_record?, :data=>{"picker-type" => "range", "range" => "start"} %> +
+
+ +
+ +
+ <%= f.datetime_picker :deadline, :no_label => true, :new_record => @recruit_news.new_record?, :data=>{"picker-type" => "range", "range" => "end"} %> +
+
+ +
+ <%= f.label :is_external_link, t("recruit_news.is_external_link"), :class => "control-label muted" %> +
+ <%= f.check_box :is_external_link %> +
+
+ + + + +
+ <%= f.label :display_subtitle, t("recruit_news.display_subtitle"), :class => "control-label muted" %> +
+ <%= f.check_box :display_subtitle %> +
+
+ + +
+ <%= f.label :display_img, t("recruit_news.display_img"), :class => "control-label muted" %> +
+ <%= f.check_box :display_img, :id=> "recruit_news_display_img" %> +
+
+ + <% image_display_class_relation = {"full_width"=>"full-size-img","up_left_corner"=>"pull-left","up_right_corner"=>"pull-right"} %> +
+ <%= f.label :image_display_class, t("recruit_news.cover_image_display_setting"), :class => "control-label muted" %> +
+ <% image_display_class_relation.each.with_index do |(key,value),i| %> + + <% end %> +
+
+ +
+ +
+ <%= render partial: 'admin/member_selects/email_selection_box', locals: {field: 'recruit_news[other_member_profiles][]', email_members: MemberProfile.find(@recruit_news.other_member_profiles), select_name: "author_members", index: 'author_members', extra_class: 'custom-class'} %> +
+
+
+ + + <% if defined? Calendar %> +
+
+ +
+ <%= f.check_box :add_to_calendar,onchange: 'trigger_on_add_calendar(this)' %> +
+
+
> +
+ +
+ <%= f.select :calendar_type_id, @calendar_categories.collect{|t| [ t.title, t.id ]} %> +
+
+
+
+ + +
+
+ <%= f.datetime_picker :calendar_start_date, :new_record => @recruit_news.new_record?, :no_label => true, :data=>{"picker-type" => "range", "range" => "start"} %> +
+
+
+
+ + +
+
+ <%= f.datetime_picker :calendar_end_date, :new_record => @recruit_news.new_record?, :no_label => true, :data=>{"picker-type" => "range", "range" => "end"} %> +
+
+
+ +
+ <%= f.check_box :calendar_all_day %> +
+
+
+ <%= f.hidden_field :event_id %> +
+ <% end %> + + <% if((!RecruitNewsSetting.first.only_manager_can_edit_status) || (RecruitNewsSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) ) %> +
+ +
+ +
+ <% if !(@reach_limit.include?('is_top') && @recruit_news.is_top != true) || current_user.is_admin? %> + + <% else %> + + <% end %> + <% if !(@reach_limit.include?('is_hot') && @recruit_news.is_hot != true) || current_user.is_admin? %> + + <% else %> + + <% end %> + +
+
+ <% if !@recruit_news.is_top? && !RecruitNewsSetting.check_limit_for_user((@recruit_news.new_record? ? current_user.id : @recruit_news.create_user_id)) %> + Top limit has been reached. The recruit_news wont be marked as top even if you click on it. + <% end %> +
+
+
" data-for="is_top"> + +
+ <%= f.datetime_picker :top_end_date, :no_label => true, :new_record => @recruit_news.new_record? %> +
+
+ +
+ <% end %> + + +
+
+ + <%= select_tags(f, @module_app) %> +
+
+ + +
+
+ + <%= select_hashtags(f, @module_app) %> +
+
+ + +
+ + +
+ +
+
+
+ <% if @recruit_news.image.file %> + <%= image_tag @recruit_news.image %> + <% else %> + + <% end %> +
+
+ + <%= t(:select_image) %> + <%= t(:change) %> + <%= f.file_field :image %> + + <%= t(:cancel) %> +
+ +
+
+
+
+ <% @site_in_use_locales.each do |locale| %> + <%= f.fields_for :image_description_translations do |f| %> +
+ +
+ <%= f.text_field locale, value: (@recruit_news.image_description_translations[locale.to_s] rescue nil) %> +
+
+ <% end %> + <% end %> + +
+ + + +
+ + +
+ + +
+ +
+ + + +
+ <%= render partial: 'admin/member_selects/email_selection_box', locals: {field: 'recruit_news[email_member_ids][]', email_members: @recruit_news.email_members, select_name: "mail_members", index: 'mail_members', extra_class: 'custom-class'} %> +
+
+
+
+ +
+
+ <%= "#{t("recruit_news.other_mailaddress")}(#{t("recruit_news.other_mailaddress_note")})"%> + <%= f.text_area :other_mailaddress, :class=>"span12", :cols=>"25", :rows=>"10" %> +
+
+
+ +
+
+ +
+ <%= f.datetime_picker :email_sentdate, :no_label => true %> +
+
+
+ + <% if (@recruit_news.email.is_sent rescue false) %> +
+
+ +
+ +
+
+
+ <% end %> + +
+ +
+ + + + + + +
+ + <% @site_in_use_locales.each_with_index do |locale, i| %> + +
"> + + +
+ +
+ <%= f.fields_for :title_translations do |f| %> + <%= f.text_area locale, class: "ckeditor_reduce input-block-level", placeholder: t(:title), value: (@recruit_news.title_translations[locale] rescue nil) %> + <% end %> +
+
+ +
+ +
+ <%= f.fields_for :speaker_translations do |f| %> + <%= f.text_field locale, class: "input-block-level", placeholder: t("recruit_news.speaker"), value: (@recruit_news.speaker_translations[locale] rescue nil) %> + <% end %> +
+
+ +
+ +
+ <%= f.fields_for :place_translations do |f| %> + <%= f.text_field locale, class: "input-block-level", placeholder: t("recruit_news.place"), value: (@recruit_news.place_translations[locale] rescue nil) %> + <% end %> +
+
+ +
+ +
+ <%= f.fields_for :host_translations do |f| %> + <%= f.text_field locale, class: "input-block-level", placeholder: t("recruit_news.host"), value: (@recruit_news.host_translations[locale] rescue nil) %> + <% end %> +
+
+ +
+ +
+
+ <%= f.fields_for :subtitle_translations do |f| %> + <%= f.text_area locale, rows: 2, class: "ckeditor input-block-level", value: (@recruit_news.subtitle_translations[locale] rescue nil) %> + <% end %> +
+
+
+ + +
+ +
+
+ <%= f.fields_for :text_translations do |f| %> + <%= f.cktext_area locale, rows: 5, class: "input-block-level", :value => (@recruit_news.text_translations[locale] rescue nil) %> + <% end %> +
+
+
+ +
+ +
+
+ <%= f.fields_for :notes_translations do |f| %> + <%= f.cktext_area locale, rows: 5, class: "input-block-level", :value => (@recruit_news.notes_translations[locale] rescue nil) %> + <% end %> +
+
+
+ +
+ + <% end %> + + +
+ +
+ + + <% if @recruit_news && !@recruit_news.recruit_news_links.blank? %> +
+ <% @recruit_news.recruit_news_links.each_with_index do |recruit_news_link, i| %> + <%= f.fields_for :recruit_news_links, recruit_news_link do |f| %> + <%= render :partial => 'form_link', :object => recruit_news_link, :locals => {:f => f, :i => i} %> + <% end %> + <% end %> +
+
+ <% end %> + + +
+
+

+ <%= hidden_field_tag 'recruit_news_link_field_count', @recruit_news.recruit_news_links.count %> + <%= t(:add) %> +

+ +
+
+ + +
+ +
+ + + <% if @recruit_news && !@recruit_news.recruit_news_files.blank? %> +
+ <% @recruit_news.recruit_news_files.each_with_index do |recruit_news_file, i| %> +
+ <%= f.fields_for :recruit_news_files, recruit_news_file do |ff| %> + <%= ff.hidden_field :position, class: "file-position" %> + <%= render :partial => 'form_file', :object => recruit_news_file, :locals => {:f => ff, :i => i} %> + <% end %> +
+ <% end %> +
+
+ <% end %> + + +
+
+

+ <%= hidden_field_tag 'recruit_news_file_field_count', @recruit_news.recruit_news_files.count %> + <%= t(:add) %> +

+ +
+
+ +
+ +
+ + +
+ <%= get_referer_url[:action] rescue "" %> + <%= f.submit t('submit'), class: 'btn btn-primary' %> + + <%= button_tag t("preview"), id: "button_for_preview", name: "commit", class: 'btn', type: :button %> + <%= link_to t('cancel'), admin_recruit_news_index_path, :class=>"btn" %> +
+ + + + +<% if !@module_app.tags.empty? %> + +<% end %> + diff --git a/app/views/admin/recruit_news/_form_file.html.erb b/app/views/admin/recruit_news/_form_file.html.erb new file mode 100644 index 0000000..7918250 --- /dev/null +++ b/app/views/admin/recruit_news/_form_file.html.erb @@ -0,0 +1,70 @@ +<% if form_file.new_record? %> +
+<% else %> +
+ + <% if form_file.file.blank? %> + <%= t(:no_file) %> + <% else %> + <%= link_to content_tag(:i) + form_file.file_identifier, form_file.file.url, {:class => 'file-link file-type', :target => '_blank', :title => form_file.file_identifier} %> + <% end %> +<% end %> +
+ + + + <% @site_in_use_locales.each_with_index do |locale, i| %> + <%= locale %>"> + <%= f.fields_for :title_translations do |f| %> + <%= f.text_field locale, :class => "input-medium", placeholder: t(:alternative), :value => (form_file.title_translations[locale] rescue nil) %> + <% end %> + + <% end %> + + + + <% @site_in_use_locales.each_with_index do |locale, i| %> + <%= locale %>"> + <%= f.fields_for :description_translations do |f| %> + <%= f.text_field locale, :class => "input-medium", placeholder: t(:description), :value => (form_file.description_translations[locale] rescue nil) %> + <% end %> + + <% end %> + + + + + + <%= hidden_field_tag "recruit_news[recruit_news_files_attributes][#{( form_file.new_record? ? 'new_recruit_news_files' : "#{i}" )}][choose_lang][]", '' %> + + <% if form_file.new_record? %> + + + + <% else %> + + <%= f.hidden_field :id %> + + <%= f.hidden_field :_destroy, :value => nil, :class => 'should_destroy' %> + + <% end %> +
+
diff --git a/app/views/admin/recruit_news/_form_image.html.erb b/app/views/admin/recruit_news/_form_image.html.erb new file mode 100644 index 0000000..58bb3e2 --- /dev/null +++ b/app/views/admin/recruit_news/_form_image.html.erb @@ -0,0 +1,49 @@ + +
+
+ +
+
+
+ <% if form_image.file.file %> + <%= image_tag form_image.file %> + <% else %> + + <% end %> +
+
+ + <%= t(:select_image) %> + <%= t(:change) %> + <%= f.file_field :file %> + + <%= t(:cancel) %> +
+ +
+
+
+
+ <% @site_in_use_locales.each do |locale| %> + <%= f.fields_for :description_translations do |f| %> +
+ +
+ <%= f.text_field locale, value: (form_image.description_translations[locale.to_s] rescue nil) %> +
+
+ <% end %> + <% end %> +
\ No newline at end of file diff --git a/app/views/admin/recruit_news/_form_link.html.erb b/app/views/admin/recruit_news/_form_link.html.erb new file mode 100644 index 0000000..461a3fc --- /dev/null +++ b/app/views/admin/recruit_news/_form_link.html.erb @@ -0,0 +1,26 @@ +
+ + <%= f.text_field :url, class: "input-large", placeholder: t(:url) %> + + + <% @site_in_use_locales.each_with_index do |locale, i| %> + <%= locale %>"> + <%= f.fields_for :title_translations do |f| %> + <%= f.text_field locale, :class => "input-large", placeholder: t(:url_alt), :value => (form_link.title_translations[locale] rescue nil) %> + <% end %> + + <% end %> + + + <% if form_link.new_record? %> + + + + <% else %> + + <%= f.hidden_field :id %> + + <%= f.hidden_field :_destroy, :value => nil, :class => 'should_destroy' %> + + <% end %> +
diff --git a/app/views/admin/recruit_news/_index.html.erb b/app/views/admin/recruit_news/_index.html.erb new file mode 100644 index 0000000..b7b7ebc --- /dev/null +++ b/app/views/admin/recruit_news/_index.html.erb @@ -0,0 +1,99 @@ + + + + + + <% @table_fields.each do |f| %> + <%= tmp = f.to_s.split('.')[-1]; RecruitNewsCustomTitle::KEYS.include?(tmp) ? Admin::RecruitNewsHelper.thead(tmp): thead(f) %> + <% end %> + + + + <% @recruit_news.each do |b| %> + + + + + + + + + + + + + <% end %> + +
+ <%= b.status_for_table %> + + <%= b.category.title rescue "" %> + <% if (b.category.disable rescue false) %> + <%= t(:disabled) %> + <% end %> + + <% if b.expired? || (b.category.disable rescue false)%> + <%= b.title.to_s.html_safe %> + <% else %> + <%= b.title.to_s.html_safe %> + <% end %> + + <% if b.expired? %> + <%= t(:expired) %> + <% end %> + + <% if b.reapproval %> + <%= t("recruit_news.reapproval") + " " + t(:pending) %> + <% end %> + <% if b.rejected %> + <%= t(:rejected) %> : <%= b.rejection_reason rescue "" %> + <% end %> + <% if !b.approved? && !b.rejected %> + <%= t(:pending) %> + <% end %> +
+ +
+
<%= format_value b.event_date %><%= format_value b.postdate %>"><%= format_value b.deadline %><%= b.update_user.user_name rescue ""%>
+
" class="footable-row-detail-inner" style="display: none;"> +
+ <%= t(:view_count) %> : + <%= b.view_count %> +
+
+ <%= t(:tags) %> : + <% b.tags.each do |tag| %> + <%= tag.name %> + <% end %> +
+
+ <%= t("recruit_news.email_to") %> : + <% b.email_members.each do |member| %> + <%= member.name %> + <% end %> + <% unless b.other_mailaddress.nil? %> + <% b.other_mailaddress.split(',').each do |mailaddress| %> + <%= mailaddress %> + <% end %> + <% end %> +
+
+
+ +<%= + content_tag :div, class: "bottomnav clearfix" do + content_tag(:div, paginate(@recruit_news), class: "pagination pagination-centered") + + content_tag(:div, link_to(t(:new_),new_admin_recruit_news_path, :class=>"btn btn-primary"), class: "pull-right") + end +%> diff --git a/app/views/admin/recruit_news/custom_fields_title.html.erb b/app/views/admin/recruit_news/custom_fields_title.html.erb new file mode 100644 index 0000000..5261ee5 --- /dev/null +++ b/app/views/admin/recruit_news/custom_fields_title.html.erb @@ -0,0 +1,26 @@ + +<%= form_tag({action: 'update_custom_title',method: 'post'}, {class: "form-horizontal main-forms previewable"}) do %> + <% Admin::RecruitNewsHelper::FormHelper.set_input_name("recruit_news_custom_title") %> + <% @recruit_news_custom_titles.each_with_index do |v,i| %> +
+ <%= label_tag :title , v.default_title, :class=>"control-label muted" %> +
+ <%= hidden_field_tag "recruit_news_custom_title[#{i}][id]", v.id %> + <%= Admin::RecruitNewsHelper::FormHelper.multiple_lang_tag(i,'text_field','title_translations',v.title_translations,{placeholder: v.default_title}) %> +
+
+ <% end %> +
+ <%= submit_tag t(:submit),class: 'btn btn-primary' %> +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/recruit_news/edit.html.erb b/app/views/admin/recruit_news/edit.html.erb new file mode 100644 index 0000000..ab1f0d2 --- /dev/null +++ b/app/views/admin/recruit_news/edit.html.erb @@ -0,0 +1,5 @@ +<%= form_for @recruit_news, url: admin_recruit_news_path(@recruit_news), html: {class: "form-horizontal main-forms previewable"} do |f| %> +
+ <%= render :partial => 'form', locals: {f: f} %> +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/recruit_news/edit_sort.html.erb b/app/views/admin/recruit_news/edit_sort.html.erb new file mode 100644 index 0000000..3a1e212 --- /dev/null +++ b/app/views/admin/recruit_news/edit_sort.html.erb @@ -0,0 +1,86 @@ +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag "lib/main-forms" %> + <%= stylesheet_link_tag "lib/fileupload" %> + <%= stylesheet_link_tag "lib/main-list" %> +<% end %> +<%= form_for @setting, url: update_sort_setting_admin_recruit_news_index_path, html: {class: "form-horizontal main-forms"}, method: 'post' do |f| %> +
+
+ <%= f.label :maull, t("recruit_news.enable_manually_sort"), :class => "control-label muted" %> +
+ <%= f.check_box :enable_manually_sort,:id=>'enable_manually_sort' %> +
+
+
+<% end %> +
+ +
+<%= render partial: 'edit_sort' %> + \ No newline at end of file diff --git a/app/views/admin/recruit_news/excel_format.xlsx.axlsx b/app/views/admin/recruit_news/excel_format.xlsx.axlsx new file mode 100644 index 0000000..73c2063 --- /dev/null +++ b/app/views/admin/recruit_news/excel_format.xlsx.axlsx @@ -0,0 +1,167 @@ +# encoding: utf-8 + +wb = xlsx_package.workbook + +wb.add_worksheet(name: "EventNewsModule") do |sheet| + + heading = sheet.styles.add_style(:b => true, :locked => true) + example = sheet.styles.add_style(:i => true) + row = [] + row1 = [] + row2 = [] + + row << t("category") + row1 << "select" + t = "" + @module_app.categories.asc(:created_at).each_with_index do |cat,i| + t = t + "#{i}" + " -> " + cat.title + ", " + end + if @module_app.categories.count > 0 + t = t + " Example : 0" + else + t = "Leave this field blank" + end + row2 << t + + row << t("tags") + row1 << "select" + t = "" + @module_app.tags.asc(:created_at).each_with_index do |tag,i| + t = t + "#{i}" + " -> " + tag.name + ", " + end + if @module_app.tags.count > 0 + t = t + " Example : 0,1,2" + else + t = "Leave this field blank" + end + row2 << t + + row << t("event_news.event_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:20" + + row << t("event_news.start_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:30" + + row << t("event_news.end_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/12 17:30" + + row << t("top") + row1 << "boolean" + row2 << "0 for false, 1 for true" + + row << t("hot") + row1 << "boolean" + row2 << "0 for false, 1 for true" + + row << t("hide") + row1 << "boolean" + row2 << "0 for false, 1 for true " + + row << t("image") + row1 << "url" + row2 << "http://www.example.com/images/example.png" + + row << t("image") + " " + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("image") + " " + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("title") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("title") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("event_news.speaker") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.speaker") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("event_news.host") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.host") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("subtitle") + " - " + t("en") + row1 << "textarea" + row2 << "" + row << t("subtitle") + " - " + t("zh_tw") + row1 << "textarea" + row2 << "" + + row << t("content") + " - " + t("en") + row1 << "editor" + row2 << "" + row << t("content") + " - " + t("zh_tw") + row1 << "editor" + row2 << "" + + row << t("event_news.notes") + " - " + t("en") + row1 << "editor" + row2 << "" + row << t("event_news.notes") + " - " + t("zh_tw") + row1 << "editor" + row2 << "" + + row << t("link") + row1 << "textfield" + row2 << "Seperate with ';'. Example: http://rulingcom.com; http://google.com" + + row << t("link") + " " + t("url_alt") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Rulingcom official site; Google search engine" + row << t("link") + " " + t("url_alt") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Rulingcom official site; Google search engine" + + row << t("file_") + row1 << "textfield" + row2 << "Seperate with ';'. Example: http://www.example.com/images/example.png; http://www.example.com/images/example2.png" + + row << t("file_") + " " + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + row << t("file_") + " " + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + + row << t("file_") + " " + t("alternative") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : example1; example2" + row << t("file_") + " " + t("alternative") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : example1; example2" + + row << t("event_news.place") + "-" + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.place") + "-" + t("zh_tw") + row1 << "textfield" + row2 << "" + row << t("event_news.event_end_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:20" + row << t("event_news.carousel_image") + "-" + t("image") + row1 << "url" + row2 << "Seperate with ';'. Example: http://www.example.com/images/example.png; http://www.example.com/images/example2.png" + row << t("event_news.carousel_image") + "-" + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + row << t("event_news.carousel_image") + "-" + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + sheet.add_row row, :style => heading + sheet.add_row row1 + sheet.add_row row2, :style => example + +end \ No newline at end of file diff --git a/app/views/admin/recruit_news/export_excel.xlsx.axlsx b/app/views/admin/recruit_news/export_excel.xlsx.axlsx new file mode 100644 index 0000000..e0bc7eb --- /dev/null +++ b/app/views/admin/recruit_news/export_excel.xlsx.axlsx @@ -0,0 +1,256 @@ +# encoding: utf-8 + +wb = xlsx_package.workbook + +wb.add_worksheet(name: "EventNewsModule") do |sheet| + + heading = sheet.styles.add_style(:b => true, :locked => true) + example = sheet.styles.add_style(:i => true) + row = [] + row1 = [] + row2 = [] + + row << t("category") + row1 << "select" + t = "" + categories = @module_app.categories.asc(:created_at) + categories.each_with_index do |cat,i| + t = t + "#{i}" + " -> " + cat.title + ", " + end + if categories.count > 0 + t = t + " Example : 0" + else + t = "Leave this field blank" + end + row2 << t + + row << t("tags") + row1 << "select" + t = "" + tags = @module_app.tags.asc(:created_at) + tags.each_with_index do |tag,i| + t = t + "#{i}" + " -> " + tag.name + ", " + end + if tags.count > 0 + t = t + " Example : 0,1,2" + else + t = "Leave this field blank" + end + row2 << t + + row << t("event_news.event_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:20" + + row << t("event_news.start_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:30" + + row << t("event_news.end_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/12 17:30" + + row << t("top") + row1 << "boolean" + row2 << "0 for false, 1 for true" + + row << t("hot") + row1 << "boolean" + row2 << "0 for false, 1 for true" + + row << t("hide") + row1 << "boolean" + row2 << "0 for false, 1 for true " + + row << t("image") + row1 << "url" + row2 << "http://www.example.com/images/example.png" + + row << t("image") + " " + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("image") + " " + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("title") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("title") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("event_news.speaker") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.speaker") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("event_news.host") + " - " + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.host") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "" + + row << t("subtitle") + " - " + t("en") + row1 << "textarea" + row2 << "" + row << t("subtitle") + " - " + t("zh_tw") + row1 << "textarea" + row2 << "" + + row << t("content") + " - " + t("en") + row1 << "editor" + row2 << "" + row << t("content") + " - " + t("zh_tw") + row1 << "editor" + row2 << "" + + row << t("event_news.notes") + " - " + t("en") + row1 << "editor" + row2 << "" + row << t("event_news.notes") + " - " + t("zh_tw") + row1 << "editor" + row2 << "" + + row << t("link") + row1 << "textfield" + row2 << "Seperate with ';'. Example: http://rulingcom.com; http://google.com" + + row << t("link") + " " + t("url_alt") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Rulingcom official site; Google search engine" + row << t("link") + " " + t("url_alt") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Rulingcom official site; Google search engine" + + row << t("file_") + row1 << "textfield" + row2 << "Seperate with ';'. Example: http://www.example.com/images/example.png; http://www.example.com/images/example2.png" + + row << t("file_") + " " + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + row << t("file_") + " " + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + + row << t("file_") + " " + t("alternative") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : example1; example2" + row << t("file_") + " " + t("alternative") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : example1; example2" + + row << t("event_news.place") + "-" + t("en") + row1 << "textfield" + row2 << "" + row << t("event_news.place") + "-" + t("zh_tw") + row1 << "textfield" + row2 << "" + row << t("event_news.event_end_date") + row1 << "datetime" + row2 << "Format: YYYY/MM/DD HH:mm, Example: 2015/12/10 15:20" + row << t("event_news.carousel_image") + "-" + t("image") + row1 << "url" + row2 << "Seperate with ';'. Example: http://www.example.com/images/example.png; http://www.example.com/images/example2.png" + row << t("event_news.carousel_image") + "-" + t("description") + " - " + t("en") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + row << t("event_news.carousel_image") + "-" + t("description") + " - " + t("zh_tw") + row1 << "textfield" + row2 << "Seperate with ';' with respective to the links in the link columns. Example : Great view; Nice potrait" + sheet.add_row row, :style => heading + sheet.add_row row1 + sheet.add_row row2, :style => example + if @thread + all_count = @event_news.count + puts_every_count = [all_count * 3 / 100, 1].max + current_count = 0 + finish_percent = 0 + @thread.update(:status=>{:status=>'Processing','all_count'=>all_count,'current_count'=>current_count,'finish_percent'=>finish_percent}) + end + @event_news.each do |anns| + row = [] + row << categories.to_a.index(anns.category) + t = [] + anns.tags.each do |tag| + t << tags.to_a.index(tag) + end + row << t.join(",") + row << (anns.event_date.strftime("%Y/%m/%d %H:%M") rescue "") + row << (anns.postdate.strftime("%Y/%m/%d %H:%M") rescue "") + row << (anns.deadline.strftime("%Y/%m/%d %H:%M") rescue "") + row << (anns.is_top? ? 1 : 0) + row << (anns.is_hot? ? 1 : 0) + row << (anns.is_hidden? ? 1 : 0) + row << ("http://" + request.host_with_port + anns.image.url rescue "") + row << anns.image_description_translations["en"] + row << anns.image_description_translations["zh_tw"] + row << anns.title_translations["en"] + row << anns.title_translations["zh_tw"] + row << anns.speaker_translations["en"] + row << anns.speaker_translations["zh_tw"] + row << anns.host_translations["en"] + row << anns.host_translations["zh_tw"] + row << anns.subtitle_translations["en"] + row << anns.subtitle_translations["zh_tw"] + row << anns.text_translations["en"] + row << anns.text_translations["zh_tw"] + row << anns.notes_translations["en"] + row << anns.notes_translations["zh_tw"] + + links = anns.event_news_links.asc(:created_at) + t = links.collect{|l|l.url} + row << t.join(";") + t = links.collect{|l|l.title_translations["en"]} + row << t.join(";") + t = links.collect{|l|l.title_translations["zh_tw"]} + row << t.join(";") + + files = anns.event_news_files.asc(:created_at) + t = files.collect{|f|("http://" + request.host_with_port + f.file.url rescue nil)} + t.delete(nil) + row << t.join(";") + t = files.collect{|l|l.description_translations["en"]} + row << t.join(";") + t = files.collect{|l|l.description_translations["zh_tw"]} + row << t.join(";") + t = files.collect{|l|l.title_translations["en"]} + row << t.join(";") + t = files.collect{|l|l.title_translations["zh_tw"]} + row << t.join(";") + row << anns.place_translations["en"] + row << anns.place_translations["zh_tw"] + + row << (anns.event_end_date.strftime("%Y/%m/%d %H:%M") rescue "") + + carousel_images = anns.event_carousel_images.asc(:created_at) + t = carousel_images.collect{|f|("http://" + request.host_with_port + f.file.url rescue nil)} + t.delete(nil) + row << t.join(";") + t = carousel_images.collect{|l|l.description_translations["en"]} + row << t.join(";") + t = carousel_images.collect{|l|l.description_translations["zh_tw"]} + row << t.join(";") + sheet.add_row row + if @thread + current_count += 1 + if current_count % puts_every_count == 0 + finish_percent = (current_count * 100.0 / all_count).round(1) + @thread.update(:status=>{:status=>'Processing','all_count'=>all_count,'current_count'=>current_count,'finish_percent'=>finish_percent}) + end + end + end + if @thread + finish_percent = 100 + @thread.update(:status=>{:status=>'finish','all_count'=>all_count,'current_count'=>current_count,'finish_percent'=>finish_percent}) + end + + + + + +end \ No newline at end of file diff --git a/app/views/admin/recruit_news/feed.html.erb b/app/views/admin/recruit_news/feed.html.erb new file mode 100644 index 0000000..8b54cbe --- /dev/null +++ b/app/views/admin/recruit_news/feed.html.erb @@ -0,0 +1,124 @@ +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag("admin/tags") %> +<% end %> +<% content_for :page_specific_javascript do %> + <%= javascript_include_tag "validator" %> +<% end %> + + + + + <% @table_feed_fields.each do |f| %> + <%= thead(f) %> + <% end %> + + + + <%= render :partial => "feed", :collection => @feeds %> + +
+<% if current_user.is_admin? or current_user.is_manager?(@module_app) %> + + + + +<% end %> + + +
\ No newline at end of file diff --git a/app/views/admin/recruit_news/import.html.erb b/app/views/admin/recruit_news/import.html.erb new file mode 100644 index 0000000..095becd --- /dev/null +++ b/app/views/admin/recruit_news/import.html.erb @@ -0,0 +1,170 @@ +<% content_for :page_specific_javascript do %> + +<% end %> +<% if @thread %> + +<% end %> +
+

<%= t("recruit_news.export_to_excel") %>

+ +

<%= t("recruit_news.import_from_excel") %>

+ <%= hidden_field_tag :authenticity_token, form_authenticity_token %> +
+ <% if @module_app.categories.count > 0 %> + +
+ +
+ + <%= t("recruit_news.please_create_tags_cats") %> +
+
+ <% else %> +
+
+

<%= t("recruit_news.create_atleast_one_cat") %>

+
+
+ <% end %> +
+ <% if @module_app.categories.count > 0 %> +
+ " class="btn btn-primary"> +
+ <% end %> +
+ + + +
+

<%= t("recruit_news.import_from_wp_xml") %>

+ <%= hidden_field_tag :authenticity_token, form_authenticity_token %> +
+
+ +
+ +
+
+
+
+ " class="btn btn-primary"> +
+
+ + \ No newline at end of file diff --git a/app/views/admin/recruit_news/index.html.erb b/app/views/admin/recruit_news/index.html.erb new file mode 100644 index 0000000..e4d5d13 --- /dev/null +++ b/app/views/admin/recruit_news/index.html.erb @@ -0,0 +1,34 @@ +<%= render_filter @filter_fields, "index_table" %> + + <%= render 'index'%> + + +<%= render 'layouts/delete_modal', delete_options: @delete_options %> + +<% if user_can_approve? %> + <%= render :partial=> "approval_modal" %> + + +<% end %> \ No newline at end of file diff --git a/app/views/admin/recruit_news/new.html.erb b/app/views/admin/recruit_news/new.html.erb new file mode 100644 index 0000000..59a0999 --- /dev/null +++ b/app/views/admin/recruit_news/new.html.erb @@ -0,0 +1,5 @@ +<%= form_for @recruit_news, url: admin_recruit_news_index_path, html: {class: "form-horizontal main-forms previewable"} do |f| %> +
+ <%= render :partial => 'form', locals: {f: f} %> +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/recruit_news/settings.html.erb b/app/views/admin/recruit_news/settings.html.erb new file mode 100644 index 0000000..138cdb7 --- /dev/null +++ b/app/views/admin/recruit_news/settings.html.erb @@ -0,0 +1,431 @@ +<%= stylesheet_link_tag "select2/select2" %> +<%= javascript_include_tag 'validator' %> +<%= javascript_include_tag "select2/select2.min" %> +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag "lib/main-forms" %> +<% end %> + +<% + sub_managers = @module_app.sub_managers + sub_managers.delete(nil) + all_statuses = [[t('top'),'is_top'],[t('hot'),'is_hot']] + tp1 = select_tag("recruit_news_setting[anns_status_settings][-1][status]",options_for_select(all_statuses)) + tp2 = select_tag("recruit_news_setting[anns_status_settings][-1][role_id]",options_for_select(Role.all.map{|r| [r.title,r.id]})) + tp3 = number_field_tag("recruit_news_setting[anns_status_settings][-1][top_limit]",nil, min: 0,required: true) + tp4 = "" + all_tp = "
#{tp1}
#{tp2}
#{tp3}
#{tp4}
" +%> + +
<%= t("recruit_news.click_on_submit") %>
+<%= form_for @setting, url: (@setting.new_record? ? admin_recruit_news_createsettings_path : admin_recruit_news_updatesettings_path), html: {class: "form-horizontal main-forms"} do |f| %> +
+
+ <%= f.label :carousel_image_type, t("recruit_news.default_carousel_image_type"), :class => "control-label muted" %> +
+ <% carousel_image_types = ["carousel","album"] %> + <%= f.select :carousel_image_type, options_for_select(carousel_image_types.map.with_index{|type,i| [t("recruit_news.carousel_image_types.#{type}"),i]}.to_h,:selected => f.object.carousel_image_type) %> +
+
+
+ <%= f.label :carousel_image_width, t("recruit_news.default_carousel_image_width"), :class => "control-label muted" %> +
+ <%= f.text_field :carousel_image_width %> +
+
+
+ <%=t("recruit_news.event_date_setting")%> +
+ +
+ <%= f.check_box :including_day_of_the_week %> +
+
+
+ +
+ <%= f.check_box :including_time, :id=>"including_time" %> +
+
+
+ +
+ <%= f.check_box :hour_clock_24 %> +
+
+
+
+ <%= f.label :only_manager_can_edit_status, t("recruit_news.only_manager_can_edit_status"), :class => "control-label muted" %> +
+ <%= f.check_box :only_manager_can_edit_status %> +
+
+
+ <%= f.label :is_display_edit_only, t("recruit_news.is_display_edit_only"), :class => "control-label muted" %> +
+ <%= f.check_box :is_display_edit_only %> +
+
+
+ <%= f.label :is_postdate_sort_first, t("recruit_news.is_postdate_sort_first"), :class => "control-label muted" %> +
+ <%= f.check_box :is_postdate_sort_first %> +
+
+
+ <%= f.label :top_limit, t("recruit_news.top_limit"), :class => "control-label muted" %> +
+ <%= f.number_field :top_limit, :min => "0" %> + <%= t("recruit_news.for_unlimited") %> +
+
+
+
+
+
+ <%= t('status') %> +
+
+ <%= t('role') %> +
+
+ <%= t('recruit_news.top_limit') %> +
+
+ <% (RecruitNewsSetting.first.anns_status_settings rescue []).each_with_index do |v,i| %> +
+ <%= hidden_field_tag("recruit_news_setting[anns_status_settings][#{i}][_id]",v.id) %> +
+ <%= select_tag("recruit_news_setting[anns_status_settings][#{i}][status]",options_for_select(all_statuses,:selected => v['status'])) %> +
+
+ <%= select_tag("recruit_news_setting[anns_status_settings][#{i}][role_id]",options_for_select(Role.all.map{|r| [r.title,r.id]},:selected => v['role_id'])) %> +
+
+ <%= number_field_tag("recruit_news_setting[anns_status_settings][#{i}][top_limit]",v['top_limit'], min: 0,required: true) %> +
+
+ +
+
+ <% end %> +
+
+ +
+
+
+
+ <% if RecruitNewsSetting.is_pro? %> + <% if !sub_managers.blank? %> +
+ <%= f.label "Approver Setting", :class => "control-label muted" %> +
+ <%= t("recruit_news.approvers_list") %> + <%= @setting.approvers.count %> +
+
+ <% else %> + + <% end %> +
+ <%= f.label "Send emails to", :class => "control-label muted" %> +
+ > <%= t("admin") %> + > <%= t("manager") %> + > <%= t("recruit_news.approver") %> +
+
+
+
+ <% sub_managers.each do |sm| %> + <% if @setting.approvers.include?(sm.id.to_s) %> + + <% end %> + <% end %> +
+<% end %> +
+ <%= f.submit t('submit'), class: 'btn btn-primary' %> +
+<% end %> +
+<% if RecruitNewsSetting.is_pro? %> + + +<% end %> +<%= fields_for :iframe do |f| %> +
+
+ <%=t('recruit_news.recruit_news_setting_for_iframe')%> +
+ <%= f.label :layout_type, t("recruit_news.layout_type"), :class => "control-label muted" %> +
+ <% @layout_types = get_layouts(@module_app.key) %> + <% if @layout_types.first.kind_of?(Hash) %> + + + <% else %> + <%= f.select(:layout, @layout_types) %> + <% end %> +
+
+
+ <%= f.label :tags, t(:tags), :class => "control-label muted" %> +
+ <% @module_app.tags.each_with_index do |t,index| %> + + <% end %> +
+
+
+ +
+ <% @module_app.categories.each_with_index do |c,index| %> + + <% end %> +
+
+
+ <%= f.label :authors, t('recruit_news.table.author'), :class => "control-label muted" %> +
+ <%= render partial: 'admin/members/generate_modal_select' , locals: { :@sorted_members => @sorted_members ,:member_form_id => "card-list-members",:member_field_name=>"iframe[member_ids][]" } %> +
+
+
+ <%= f.label :show_page, t('recruit_news.show_page'), :class => "control-label muted" %> +
+ <%=f.check_box :show_page ,{:checked=>'checked'},'true','false'%> +
+
+
+ <%= f.label :data_count, t(:data_count), :class => "control-label muted" %> +
+ <%=f.number_field :data_count, {min: 0,:value=> 10} %> +
+
+ +
+
+<% end %> + \ No newline at end of file diff --git a/app/views/admin/recruit_news/update_sort.html.erb b/app/views/admin/recruit_news/update_sort.html.erb new file mode 100644 index 0000000..79513a3 --- /dev/null +++ b/app/views/admin/recruit_news/update_sort.html.erb @@ -0,0 +1 @@ +<%= render partial: 'edit_sort' %> \ No newline at end of file diff --git a/app/views/email/reapproval_recruit_news_email.html.erb b/app/views/email/reapproval_recruit_news_email.html.erb new file mode 100644 index 0000000..bca0ae1 --- /dev/null +++ b/app/views/email/reapproval_recruit_news_email.html.erb @@ -0,0 +1,3 @@ +

Hello <%= @data["name"] %>,

+

<%= @data["submitter"] %> <%= t("recruit_news.updated_annoucement") %> +<%= t("recruit_news.click_here_to_see") %> \ No newline at end of file diff --git a/app/views/email/recruit_news_email.html.erb b/app/views/email/recruit_news_email.html.erb new file mode 100644 index 0000000..902acf0 --- /dev/null +++ b/app/views/email/recruit_news_email.html.erb @@ -0,0 +1 @@ +<%= @data["html"].html_safe %> \ No newline at end of file diff --git a/app/views/email/rejection_email.html.erb b/app/views/email/rejection_email.html.erb new file mode 100644 index 0000000..6c19d1b --- /dev/null +++ b/app/views/email/rejection_email.html.erb @@ -0,0 +1,3 @@ +

Hello <%= @data["name"] %>,

+

<%= @data["rejector"] %> <%= t("recruit_news.rejected_recruit_news") %> : <%= @data["reason"].nil? || @data["reason"] == "" ? "" : "#{@data["reason"]}" %>

+<%= t("recruit_news.click_here_to_see") %> \ No newline at end of file diff --git a/app/views/recruit_news_feeds/rssfeed.rss.builder b/app/views/recruit_news_feeds/rssfeed.rss.builder new file mode 100644 index 0000000..4b32a42 --- /dev/null +++ b/app/views/recruit_news_feeds/rssfeed.rss.builder @@ -0,0 +1,16 @@ +xml.instruct! :xml, :version => "1.0" +xml.rss :version => "2.0" do + xml.channel do + xml.title @bf.title + xml.link "/xhr/recruit_news/rssfeed/#{params[:uid]}.rss" + + for e in @recruit_news + xml.item do + xml.title e.title + xml.description e.subtitle + xml.pubDate e.created_at.to_s(:rfc822) + xml.link page_for_recruit_news(e) + end + end + end +end \ No newline at end of file diff --git a/app/views/recruit_news_mods/_carousels.html.erb b/app/views/recruit_news_mods/_carousels.html.erb new file mode 100644 index 0000000..e209224 --- /dev/null +++ b/app/views/recruit_news_mods/_carousels.html.erb @@ -0,0 +1 @@ +<%= render(:partial=>"recruit_news_mods/carousels#{carousel_image_type}", :locals=>{:data=>data}) %> \ No newline at end of file diff --git a/app/views/recruit_news_mods/_carousels0.html.erb b/app/views/recruit_news_mods/_carousels0.html.erb new file mode 100644 index 0000000..f931672 --- /dev/null +++ b/app/views/recruit_news_mods/_carousels0.html.erb @@ -0,0 +1,283 @@ + + + + \ No newline at end of file diff --git a/app/views/recruit_news_mods/_carousels1.html.erb b/app/views/recruit_news_mods/_carousels1.html.erb new file mode 100644 index 0000000..05848ba --- /dev/null +++ b/app/views/recruit_news_mods/_carousels1.html.erb @@ -0,0 +1,13 @@ + + \ No newline at end of file diff --git a/app/views/recruit_news_mods/email.html.erb b/app/views/recruit_news_mods/email.html.erb new file mode 100644 index 0000000..5ba5418 --- /dev/null +++ b/app/views/recruit_news_mods/email.html.erb @@ -0,0 +1,19 @@ + + + + + + +
+ + <%= t('recruit_news.mail_hi') %>

+ <%= t('recruit_news.mail_url_view') %>

+ " target="_blank"> <%= @data["title"] %>

+ + --
+ <%= t('recruit_news.mail_source') %> :" target="_blank"> <%= Site.first.title %>
+ <%= t('recruit_news.mail_time') %> <%= DateTime.now %> +
+ + + \ No newline at end of file diff --git a/app/views/recruit_news_mods/index.html.erb b/app/views/recruit_news_mods/index.html.erb new file mode 100644 index 0000000..866b767 --- /dev/null +++ b/app/views/recruit_news_mods/index.html.erb @@ -0,0 +1,66 @@ +<% + params = OrbitHelper.params +%> +<% if @enable_search_flag %> + +
+ <% + all_cat = [[t('recruit_news.all'),'all']] + %> +
+ <%= select_tag('category',options_for_select(all_cat.concat(@categories.map{|v| [v.title,v.id.to_s]}),:selected => params['category'].to_s),:id=>"category_select_box",:prompt => t('recruit_news.select_prompt')) %> + " placeholder="<%= t('recruit_news.keywords') %>"> +
+
+ " placeholder="<%= t('recruit_news.stime') %>" data-format="yyyy/mm/dd"> +
+ ~ +
+ " placeholder="<%= t('recruit_news.etime') %>" data-format="yyyy/mm/dd"> +
+
+ + +
+
+<% end %> +<%= render_view %> \ No newline at end of file diff --git a/app/views/recruit_news_mods/show.html.erb b/app/views/recruit_news_mods/show.html.erb new file mode 100644 index 0000000..fd04ae0 --- /dev/null +++ b/app/views/recruit_news_mods/show.html.erb @@ -0,0 +1,124 @@ +<% + require 'recruit_news_helper' + data = action_data + params = OrbitHelper.params + page = @page || Page.where(url:params['url']).first + @ad_banner_location = 2 + @show_back_and_next_flag = 0 + if Page.instance_methods.include?(:select_option_items) && ModuleApp.instance_methods.include?(:show_option_items) + @show_option_items = nil + ModuleApp.all.select{|tmp| tmp.key.to_s=='recruit_news_mod'}.each do |module_app| + @show_option_items = module_app.show_option_items + end + page.select_option_items.each do |select_option_item| + unless @show_option_items.nil? + if select_option_item.field_name == @show_option_items.keys.first.to_s + value = YAML.load(select_option_item.value) + tmp = value[:en] + I18n.with_locale(:en) do + if tmp == t('recruit_news.not_show') + @show_back_and_next_flag = 0 + elsif tmp == t('recruit_news.show_top') + @show_back_and_next_flag = 1 + elsif tmp == t('recruit_news.show_bottom') + @show_back_and_next_flag = 2 + end + end + elsif select_option_item.field_name == @show_option_items.keys[2].to_s + value = YAML.load(select_option_item.value) + tmp = value[:en] + I18n.with_locale(:en) do + if tmp == t('recruit_news.show_top') + @ad_banner_location = 1 + elsif tmp == t('recruit_news.show_bottom') + @ad_banner_location = 2 + end + end + end + end + end + end + if @show_back_and_next_flag != 0 + uid = params['uid'] + sorted,total_pages = get_sorted_annc(0) + now_index = sorted.to_enum.with_index.select{|v| v[0].uid==uid}[0][1] rescue nil + if !now_index.nil? + if now_index != 0 + prev_result = sorted[now_index-1] + prev_url = params['url'] + '/' + prev_result.to_param + prev_content = "" + end + if now_index != sorted.length-1 + next_result = sorted[now_index+1] + next_url = params['url'] + '/' + next_result.to_param + next_content = "" + end + content = "
#{prev_content}#{next_content}
".html_safe + else + content = '' + end + end +%> +<%= stylesheet_link_tag 'recruit_news_front.css' %> +<% if @show_back_and_next_flag!=0 %> + +<% end %> + +<% if @show_back_and_next_flag==1 %> +<%= content %> +<% end %> + +<% if @ad_banner_location==1 %> +<%= data["data"]["carousel_html"] %> +<% end %> + +<%= render_view %> + +<% if @ad_banner_location==2 %> +<%= data["data"]["carousel_html"] %> +<% end %> + +<% if @show_back_and_next_flag==2 %> +<%= content %> +<% end %> + + \ No newline at end of file diff --git a/app/views/recruit_news_mods/show_widget.html.erb b/app/views/recruit_news_mods/show_widget.html.erb new file mode 100644 index 0000000..bdba4dc --- /dev/null +++ b/app/views/recruit_news_mods/show_widget.html.erb @@ -0,0 +1,15 @@ + + + + <%= render_site_title %> + <%= stylesheet_link_tag "//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css"%> + <%= stylesheet_link_tag "recruit_news/bootstrap/bootstrap.min.css"%> + <%= stylesheet_link_tag "template/template"%> + <%= javascript_include_tag "jquery.min"%> + <%= javascript_include_tag "bootstrap.min"%> + + + <% @target_action = "show_widget" %> + <%=render_view_for_recruit_news((!params[:layout_type].blank? ? params[:layout_type] : 'recruit_news_index1'))%> + + \ No newline at end of file diff --git a/bin/rails b/bin/rails new file mode 100644 index 0000000..08ba0ad --- /dev/null +++ b/bin/rails @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application. + +ENGINE_ROOT = File.expand_path('../..', __FILE__) +ENGINE_PATH = File.expand_path('../../lib/announcement/engine', __FILE__) + +# Set up gems listed in the Gemfile. +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) + +# require 'rails/all' +# require 'rails/engine/commands' +require "action_controller/railtie" +require "action_mailer/railtie" +require "sprockets/railtie" +require "rails/test_unit/railtie" +require 'rails/engine/commands' +require "mongoid/railtie" diff --git a/config/initializers/scheduler.rb b/config/initializers/scheduler.rb new file mode 100644 index 0000000..ec3bc0c --- /dev/null +++ b/config/initializers/scheduler.rb @@ -0,0 +1,9 @@ +require 'rufus-scheduler' + +scheduler = Rufus::Scheduler.new + +#return if defined?(Rails::Console) || Rails.env.test? || File.split($0).last == 'rake' + +scheduler.cron '43 2 * * *' do + system('bundle exec rake recruit_news:remove_preview_recruit_news') +end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..9ddad16 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,200 @@ +en: + module_name: + recruit_news_mod: Event News + recruit_news_mod: + recruit_news_mod: Event News + recruit_news: + carousel_image_types: + default: Default + carousel: Carousel + album: Album + default_carousel_image_type: Default carousel image type + carousel_image_type: Carousel image type + read_from_cache: "Read from cache!" + manually_sort: Manually Sort + enable_manually_sort: Enable Manually Sort + manual_update_sort: Manually Update Sort + category: Category + event_date_setting: "Event date setting" + event_date_use_default_setting: "Event date use default setting" + including_day_of_the_week: "Including day of the week" + including_time: "Including time" + hour_clock_24: "24 hour clock" + title: Title + all_day: All Day + show_today_data_first: Show today data first + custom_fields_title: Custom Fields Title + custom_carousel_image_width_hint: "If blank, width will be default value." + carousel_image_width: Carousel Image Width + default_carousel_image_width: Default Carousel Image Width + place: Place + cover_image_display_setting: Cover Image display setting + full_width: Full width + up_left_corner: Up-left corner + up_right_corner: Up-right corner + all_tabs_setting: '"All" tab setting' + the_same_as_data_count: The same as data count + display_all_in_other_tabs: Display all contents in other tabs + read_more_position_options: '"read more" button position' + default: Default + upper_left: Upper left + lower_left: Lower left + upper_right: Upper right + lower_right: Lower right + tabs_options: Tabs options + not_enable_tabs: Not enable tabs + enable_tabs_with_categories_include_all: Enable tabs with categories(include all) + enable_tabs_with_categories: Enable tabs with categories + notes: Notes + speaker: Speaker + host: Host + unit: Unit + employer: Employer + event_date: Event Date + event_end_date: Event End Date + start_date: Start date + end_date: End date + add_to_calendar: Add to calendar + blank_to_set: (blank to use event news setting) + stime: start time + etime: end time + select_prompt: --select category-- + all: All + keywords: Keywords + enable_search: Enable search feature + 'yes': 'Yes' + 'no': 'No' + image: Cover Image + carousel_image: Carousel Image + carousel_image_title: Carousel Image(display at the bottom of show page) + picture_showing_size: Picture Showing Size + orignal_size: Original Size + small_size: Small Size + medium_size: Medium Size + showing_back_and_next: Show back and next + not_show: Not show + show_top: Show at top + show_bottom: Show at bottom + prev: previous + next: next + table: + title : Title + date : Date + status : Status + sub_title: Sub Title + category: Category + author: Author + link: Link + file: File + view_count: View Count + department: Department + sort_number: Sort Number + add_new: Add New + export_to_excel: Export to Excel + export_all_anns: Export all Event News + import_from_excel: Import from Excel + download_example_sheet_here: Download example sheet here + please_create_tags_cats: Please create all the tags and categories before hand. Only excel file is allowed + create_atleast_one_cat: Please create atleast one category before importing. + import_from_wp_xml: Import from WordPress XML + click_on_submit: Click on Submit to save the changes + approvers_list: Approvers List + click_set_sub_manager: Click here to set Sub Managers for this module + approver: Approver + top_limit: Top Limit + for_unlimited: Put 0 for unlimited + feed_name: Feed Name + rssfeed: RSS Feed Link + jsonfeed: JSON Feed Link + feed_list: Feed List + approve: Approve + all_articles: All Articles + settings: Settings + import: Import / Export + recruit_news_module: Event News + approval_setting: Approval Setting + approve_recruit_news_fail: Approval Fail + approve_recruit_news_success: Approve Successfully + approval_waiting: Approval + submitted_new_recruit_news: "%{poster} submitted a new event news waiting for your approval." + click_here_to_see: Please click the link below to view the event news. + rejected_annoucement: has rejected your event news, because + updated_annoucement: "%{poster} updated the rejected event news." + recruit_news_subject: New event news waiting for approval + approval_site: Site + approval_mail_hi: Hello %{name}, + approval_recruit_news_title: Event News Title + recruit_news: Event News + categories: Categories + create_recruit_news_success: Create Bulletin Successfully + create_recruit_news_category_success: Create Category Successfully + date: Event News Date + default_widget: + recruit_news_category_with_title: Bulletin Category with Title + postdate: Post Date + subtitle: Subtitle + title: Title + editing_recruit_news: Edit event news + editing_recruit_news_category: Edit Category + file: Attachment + file_description: File Description + file_name: File Name + frontend: + recruit_news: Event News front-end + search_result: Search result + link_name: Link Name + new_recruit_news_category: New Bulletin Category + picture: Cover Picture + search: Search + selected_file: Select File + update_recruit_news_category_success: Update Category Successfully + url: URL + widget: + recruit_news_and_web_links: Differential Nav. + index: Index + search: Search + more_: "More " + more: More + email_reminder: Email Reminder + activate_email_reminder: Activate Email Reminder + email_sentdate: Email Time + email_to: Email To + mail_subject: this is an event news reminder from【%{site_title}】 + view_count: View Counts + other_mailaddress: Other Email + other_mailaddress_note: Divide different email accounts with "," + mail_hi: Hi + mail_url_view: This email is the reminder of an event news, please click the link for the details + mail_source: Source + mail_time: Time + image_upload_size_note: The following recommendations %{image_upload_size} upload size + resend_mail: Re-send Email + is_external_link: Enable External Link + external_link: External Link + external_link_hint: "Make sure URL starts with http://" + display_subtitle: Display Subtitle in Content Page + display_img: Display Cover Image in Content Page + is_display_edit_only: Only display editable event news + is_postdate_sort_first: Sort by Post Date first (Sort by Event Date first as Default) + only_manager_can_edit_status: Only manager can edit status of event news + layout_type: Layout type + recruit_news_setting_for_iframe: Event News settings for iframe + url_generate: Url Generate + show_page: Show pagination + URL: URL + copy: Copy + month_name: + '1': 'January' + '2': 'February' + '3': 'March' + '4': 'April' + '5': 'May' + '6': 'June' + '7': 'July' + '8': 'August' + '9': 'September' + '10': 'October' + '11': 'November' + '12': 'December' + calendar_title: "%{month} %{year}" + ad_banner_location: Ad Banner Location(Need to Upload in Edit Page) diff --git a/config/locales/zh_tw.yml b/config/locales/zh_tw.yml new file mode 100644 index 0000000..411f99c --- /dev/null +++ b/config/locales/zh_tw.yml @@ -0,0 +1,190 @@ +zh_tw: + module_name: + recruit_news_mod: 徵才公告 + recruit_news_mod: + recruit_news_mod: 徵才公告 + recruit_news: + carousel_image_types: + default: 預設 + carousel: 輪播 + album: 相本排版 + default_carousel_image_type: 預設輪播樣式 + carousel_image_type: 預設輪播樣式 + read_from_cache: "從暫存中讀取!" + manually_sort: 手動排序 + enable_manually_sort: 開啟手動排序 + manual_update_sort: 手動更新排序 + category: 類別 + event_date_setting: "事件日期設定" + event_date_use_default_setting: "使用預設的事件日期設定" + including_day_of_the_week: "包含星期幾" + including_time: "包含時間" + hour_clock_24: "24小時制" + title: 講題 + all_day: 全天 + show_today_data_first: 優先顯示當日資料 + custom_fields_title: 欄位名稱設定 + custom_carousel_image_width_hint: "未填寫,則使用預設寬度" + carousel_image_width: 輪播圖片寬度 + default_carousel_image_width: 預設輪播圖片寬度 + place: 地點 + cover_image_display_setting: 封面圖片顯示設定 + full_width: 滿版呈現 + up_left_corner: 左上角 + up_right_corner: 右上角 + all_tabs_setting: '"全部"頁籤設定' + the_same_as_data_count: 與Data count相同 + display_all_in_other_tabs: 顯示在其他頁籤的全部內容 + read_more_position_options: '"更多"按鈕的位置' + default: 預設 + upper_left: 左上 + lower_left: 左下 + upper_right: 右上 + lower_right: 右下 + tabs_options: 頁籤選項 + not_enable_tabs: 無頁籤 + enable_tabs_with_categories_include_all: 開啟頁籤(依類別,並包含全部所選類別之頁籤) + enable_tabs_with_categories: 開啟頁籤(依類別) + notes: 備註 + speaker: 演講者 + host: 主持人 + unit: 公告單位 + employer: 徵求單位 + event_date: 事件日期 + event_end_date: 事件結束日期 + start_date: 公告日期 + end_date: 截止日期 + add_to_calendar: 加入行事曆 + blank_to_set: (留白則使用公告設定) + stime: 開始時間 + etime: 結束時間 + select_prompt: --選取類別-- + all: 全部 + keywords: 關鍵字 + enable_search: 開啟搜尋功能 + 'yes': 是 + 'no': 否 + image: 封面圖片 + carousel_image: 輪播圖片 + carousel_image_title: 輪播圖片(在show頁面底部顯示) + picture_showing_size: 圖片顯示大小 + orignal_size: 原圖大小 + small_size: 小張縮圖 + medium_size: 中等縮圖 + showing_back_and_next: 顯示上下則 + not_show: 不顯示 + show_top: 顯示在最上面 + show_bottom: 顯示在最下面 + prev: 上一則 + next: 下一則 + table: + title : 標題 + date : 事件日期 + status : 標籤 + sub_title: 副標題 + category: 類別 + author: 張貼人 + link: 超連結 + file: 檔案下載 + view_count: 瀏覽人次 + department: 單位 + sort_number: 排序值 + add_new: 新建 + import: 匯入 + export_to_excel: 匯出至Excel檔 + export_all_anns: 匯出所有徵才公告 + import_from_excel: 從Excel檔匯入 + download_example_sheet_here: 在此下載範例 + please_create_tags_cats: 甲、 請事先建立所有標籤及分類。 僅限Excel檔。 + create_atleast_one_cat: 匯入前, 請先建立至少一個類別 + import_from_wp_xml: 從WordPress XML檔匯入 + top_limit: 最高設限 + for_unlimited: 歸零不設限 + click_on_submit: 點"提交"儲存變更 + approvers_list: 審核人名單 + click_set_sub_manager: 點這邊來設定這個模組的副管理者 + approver: 審核人 + approve: 通過 + feed_name: Feed 標題 + settings: 設定 + import: 匯入 / 匯出 + rssfeed: RSS 供給連結 + jsonfeed: JSON 供給連結 + feed_list: 訂閱清單 + all_articles: 文章列表 + recruit_news_module: 徵才公告 + approval_setting: 審核設定 + approve_recruit_news_fail: 審核失敗 + approve_recruit_news_success: 審核成功 + approval_waiting: 審核 + submitted_new_announcement: 貴單位於全球資訊網有一則 %{poster} 張貼的最新消息待您審核發布, + click_here_to_see: 請您點擊以下網址,前往審核 + rejected_annoucement: 未通過您的公告審核,原因為 + updated_annoucement: 貴單位於全球資訊網有一則 %{poster} 被拒絕的最新消息已重新編輯待您審核發布, + announcement_subject: 系統訊息 - 最新消息內容審核通知 + approval_mail_hi: 親愛的 %{name} 主管您好 + approval_site: 網址 + approval_announcement_title: 消息標題 + recruit_news: 徵才公告 + categories: 類別 + create_recruit_news_success: 建立公告成功 + create_recruit_news_category_success: 建立類別成功 + date: 起迄日期 + default_widget: + recruit_news_category_with_title: 公告類別及標題 + postdate: 張貼日期 + subtitle: 副標題 + title: 標題 + editing_announcement: 編輯類別 + editing_announcement_category: 編輯類別 + error: + no_avilb_cate_for_posting: 沒有可以張貼的類別 + file: 附加檔案 + file_description: 檔案描述 + file_name: 檔案名稱 + frontend: + recruit_news: 公告前台 + search_result: 搜尋結果頁 + link_name: 連結名稱 + new_recruit_news_category: 新增公告類別 + picture: 刊頭圖片 + search: 搜尋 + selected_file: 選擇檔案 + update_recruit_news_category_success: 更新類別成功 + url: 連結位置 + widget: + recruit_news_and_web_links: 分眾頁籤 + index: 索引 + search: 搜尋 + more: 更多→ + more_: 更多 + email_reminder: 寄送提醒 + activate_email_reminder: 開啟寄送提醒 + email_sentdate: 寄送時間 + email_to: 寄送對象 + view_count: 瀏覽人次 + other_mailaddress: 其他Mail + other_mailaddress_note: 輸入多組mail時,請用","逗號隔開 + mail_subject: 來自【%{site_title}】的公告事件提醒 + mail_hi: 您好 + mail_url_view: 此封信件為徵才公告事件提醒,請點選以下連結詳細觀看 + mail_source: 來源 + mail_time: 時間 + image_upload_size_note: 建議檔案小於%{image_upload_size} + resend_mail: 重新寄送提醒 + is_external_link: 連結外部網址 + external_link: 外部連結 + external_link_hint: "確定連結開頭為http://" + display_subtitle: 內容頁顯示副標題 + display_img: 內容頁顯示封面圖片 + is_display_edit_only: 只顯示可更新的徵才公告 + is_postdate_sort_first: 優先使用公告日期排序(預設優先使用事件日期) + only_manager_can_edit_status: 只有管理者可更新徵才公告狀態 + layout_type: 頁面樣式 + recruit_news_setting_for_iframe: 徵才公告iframe設定 + url_generate: 網址生成 + show_page: 顯示頁碼 + URL: 網址 + copy: 複製 + calendar_title: "%{year}年%{month}月" + ad_banner_location: 廣告輪播位置(需於編輯頁面上傳) diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..61923a7 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,53 @@ +Rails.application.routes.draw do + locales = Site.first.in_use_locales rescue I18n.available_locales + + scope "(:locale)", locale: Regexp.new(locales.join("|")) do + namespace :admin do + post 'recruit_news/preview', to: 'recruit_news#preview' + post 'recruit_news/createfeed', to: 'recruit_news#createfeed' + post 'recruit_news/importanns', to: 'recruit_news#importanns' + post 'recruit_news/import_from_xml', to: 'recruit_news#import_from_xml' + get 'recruit_news/excel_format', to: 'recruit_news#excel_format' + get 'recruit_news/export_excel', to: 'recruit_news#export_excel' + patch 'recruit_news/updatefeed', to: 'recruit_news#updatefeed' + delete 'recruit_news/deletefeed', to: 'recruit_news#deletefeed' + get 'recruit_news/destroy_preview/:slug_title-:uid', to: 'recruit_news#destroy_preview' + post 'recruit_news/approve_recruit_news', to: 'recruit_news#approve_recruit_news' + get 'recruit_news/feed', to: 'recruit_news#feed' + get 'recruit_news/feedform', to: 'recruit_news#feedform' + get 'recruit_news/settings', to: 'recruit_news#settings' + get 'recruit_news/import', to: 'recruit_news#import' + get 'recruit_news/download_file_from_thread', to: 'recruit_news#download_file_from_thread' + post 'recruit_news/createsettings', to: 'recruit_news#createsettings' + patch 'recruit_news/updatesettings', to: 'recruit_news#updatesettings' + post 'recruit_news/import_from_wp', to: 'recruit_news#import_from_wp' + post 'recruit_news/generate_iframe_url' => 'recruit_news#generate_iframe_url' + resources :recruit_news do + collection do + get 'custom_fields_title' + post 'update_custom_title' + get "edit_sort" + post "update_sort_setting", to: 'recruit_news#update_sort_setting' + post "update_sort", to: 'recruit_news#update_sort' + end + end + end + + resources :recruit_news do + collection do + get ':slug_title-:uid', to: 'recruit_news_mods#show', as: :display + end + end + post "/xhr/recruit_news_mods/feed_add_remote/:uid" => "recruit_news_feeds#feed_add_remote" + post "/xhr/recruit_news_mods/feed_remove_remote/:uid" => "recruit_news_feeds#feed_remove_remote" + get '/xhr/recruit_news/agenda' => 'recruit_news_mods#agenda' + get "/xhr/recruit_news/feed/:uid" => "recruit_news_feeds#feed" + get "/xhr/recruit_news/rssfeed/:uid" => "recruit_news_feeds#rssfeed" + get "/xhr/recruit_news/feeds" => "recruit_news_feeds#feeds" + get '/xhr/recruit_news/recruit_news.json', to: 'recruit_news_module#get_recruit_news' + get '/xhr/panel/recruit_news/widget/sync_data' => 'recruit_news_mods#show_widget' + get '/xhr/recruit_news/file/:id/*f_name', to: 'recruit_news_mods#get_file', format: false + + end + +end diff --git a/lib/recruit_news_mod.rb b/lib/recruit_news_mod.rb new file mode 100644 index 0000000..e5ba2b3 --- /dev/null +++ b/lib/recruit_news_mod.rb @@ -0,0 +1,6 @@ +require "recruit_news_mod/engine" +require "recruit_news_mod/cache" +require "recruit_news_mod/migrate" +module RecruitNewsMod + +end diff --git a/lib/recruit_news_mod/cache.rb b/lib/recruit_news_mod/cache.rb new file mode 100644 index 0000000..616b5a7 --- /dev/null +++ b/lib/recruit_news_mod/cache.rb @@ -0,0 +1,35 @@ +module RecruitNewsMod + module Cache + require 'active_support/concern' + extend ActiveSupport::Concern + included do + after_save :cache_tag_ids, :do_before_save + after_destroy :do_before_save + before_destroy :cache_tag_ids + end + def cache_tag_ids + if self.class == ::RecruitNews + @tag_ids = self.tag_ids + @org_tag_ids = self.org_tag_ids + @category_id = self.category_id + @org_category_id = self.org_category_id + end + end + def do_before_save + if self.class == SubPart + ::RecruitNewsCache.where(parent_id:self.id).destroy + elsif self.class == ::RecruitNews || (self.class == Page && self.module == "recruit_news_mod") + if self.class == ::RecruitNews + tmp_tag_ids = (Array(@tag_ids) + Array(@org_tag_ids)).uniq + tmp_cat_ids = (Array(@category_id) + Array(@org_category_id)).uniq + Thread.new do + ::RecruitNewsFeedCache.where(:uid.in => ::RecruitNewsFeed.any_of([{:tag_ids.in => tmp_tag_ids.collect{|v| v.to_s}},{:category_ids.in => tmp_cat_ids.collect{|v| v.to_s}}]).pluck(:uid)).to_a.each do |cache| + cache.regenerate + end + end + end + ::RecruitNewsCache.all.destroy + end + end + end +end \ No newline at end of file diff --git a/lib/recruit_news_mod/engine.rb b/lib/recruit_news_mod/engine.rb new file mode 100644 index 0000000..2057054 --- /dev/null +++ b/lib/recruit_news_mod/engine.rb @@ -0,0 +1,217 @@ +module RecruitNewsMod + class Engine < ::Rails::Engine + initializer "recruit_news_mod" do + Rails.application.config.to_prepare do + require "yaml" + begin + translate_data = Dir["#{RecruitNewsMod::Engine.root}/config/locales/*.yml"] .map{|yaml_file| YAML.load(File.read(yaml_file))} + data = {} + key1 = {} + key2 = {} + key3 = {} + key4 = {} + key5 = {} + key1_attr = [] + key2_attr = [] + key3_attr = [] + key4_attr = [] + data_item = {} + key_item1 = {} + key_item2 = {} + key_item3 = {} + key_item4 = {} + value_item1 = {} + value_item2 = {} + value_item3 = {} + value_item4 = {} + key1_options = ['small_size','medium_size','orignal_size'] + key2_options = ['not_enable_tabs','enable_tabs_with_categories_include_all','enable_tabs_with_categories'] + key3_options = ['default','upper_left','lower_left','upper_right','lower_right'] + key4_options = ['the_same_as_data_count','display_all_in_other_tabs'] + #After fix I18n.load_path, translation can work there + yes_no_options = ['no_','yes_'].map{|v| I18n.available_locales.map{|k| I18n.with_locale(k){[k,I18n.t(v)]}}.to_h} + key1_options.each_with_index do |k,i| + key1_attr[i] = {} + end + key2_options.each_with_index do |k,i| + key2_attr[i] = {} + end + key3_options.each_with_index do |k,i| + key3_attr[i] = {} + end + key4_options.each_with_index do |k,i| + key4_attr[i] = {} + end + translate_data.each do |t_data| + v = t_data.values + k = t_data.keys[0] + key1[k] = v[0]['recruit_news']['picture_showing_size'] + key2[k] = v[0]['recruit_news']['tabs_options'] + key3[k] = v[0]['recruit_news']['read_more_position_options'] + key4[k] = v[0]['recruit_news']['all_tabs_setting'] + key5[k] = v[0]['recruit_news']['show_today_data_first'] + key1_options.each_with_index do |kk,i| + key1_attr[i][k] = v[0]['recruit_news'][kk] + end + key2_options.each_with_index do |kk,i| + key2_attr[i][k] = v[0]['recruit_news'][kk] + end + key3_options.each_with_index do |kk,i| + key3_attr[i][k] = v[0]['recruit_news'][kk] + end + key4_options.each_with_index do |kk,i| + key4_attr[i][k] = v[0]['recruit_news'][kk] + end + key_item1[k] = v[0]['recruit_news']['showing_back_and_next'] + key_item2[k] = v[0]['recruit_news']['enable_search'] + key_item3[k] = v[0]['recruit_news']['ad_banner_location'] + value_item1[k] = v[0]['recruit_news']['not_show'] + value_item2[k] = v[0]['recruit_news']['show_bottom'] + value_item3[k] = v[0]['recruit_news']['show_top'] + end + key_item4 = key5 + data[key1] = key1_attr + data[key2] = key2_attr + data[key3] = key3_attr + data[key4] = key4_attr + data[key5] = yes_no_options + data_item[key_item1] = [value_item1,value_item2,value_item3] + data_item[key_item2] = yes_no_options + data_item[key_item3] = [value_item2,value_item3] + data_item[key_item4] = yes_no_options + data_item[key1] = key1_attr + if ENV['worker_num']=='0' && File.basename($0) != 'rake' && !Rails.const_defined?('Console') + require File.expand_path('../../../app/models/recruit_news_cache', __FILE__) + if defined?(RecruitNewsCache) + RecruitNewsCache.destroy_all + end + require File.expand_path('../../../app/models/recruit_news_custom_title', __FILE__) + if defined? RecruitNewsCustomTitle + RecruitNewsCustomTitle.get_map + end + end + rescue => e + puts ['error in recruit_news',e,e.backtrace] + end + + if ENV['worker_num']=='0' && File.basename($0) != 'rake' && !Rails.const_defined?('Console') + Thread.new do + begin + Migrate.call + rescue => e + puts ['recruit_news_mod',e, e.backtrace] + end + end + end + + OrbitApp.registration "recruit_news_mod", :type => "ModuleApp" do + db = ::Mongoid::Sessions.default + collection = db[:module_apps] + update_results = collection.update_many({key: 'recruit_news'},'$set'=>{key: 'recruit_news_mod', title: 'recruit_news_mod'}) + if update_results.n != 0 + puts "Updating recruit_news to recruit_news_mod!" + collection = db[:pages] + collection.update_many({:module=> 'recruit_news'},'$set'=>{:module=> 'recruit_news_mod'}) + collection = db[:sub_parts] + collection.update_many({:module=> 'recruit_news'},'$set'=>{:module=> 'recruit_news_mod'}) + template_path = Rails.root.to_s + '/app/templates' + all_template = Dir.glob(template_path+'/*/') + all_template.each do |folder| + Bundler.with_clean_env{system ("mkdir -p #{folder}modules/recruit_news_mod; cp -rf #{folder}modules/recruit_news/* #{folder}modules/recruit_news_mod/. && rm -rf #{folder}modules/recruit_news_mod/recruit_news")} + end + end + module_label "recruit_news.recruit_news" + base_url File.expand_path File.dirname(__FILE__) + widget_methods ["widget","random_recruit_news_widget", "tag_cloud"] + widget_settings [{"data_count"=>30}] + taggable "RecruitNews" + hashtaggable "RecruitNews" + categorizable + authorizable + frontend_enabled + feeds_url "/xhr/recruit_news/feeds" + feeds_time_field (::RecruitNewsHelper.is_postdate_sort_first ? ['postdate', 'event_date'] : ['event_date', 'postdate']) + data_count 1..30 + begin + show_options data + show_option_items data_item + rescue => e + puts ['there_was_no_show_option_method',e] + end + if File.basename($0) != 'rake' + begin + avoid_page_cache RecruitNewsCache + avoid_page_cache RecruitNewsFeedCache + avoid_page_cache RecruitNewsFeed + rescue => e + puts ["avoid_page_cache", e.to_s] + end + end + side_bar do + head_label_i18n 'recruit_news.recruit_news', icon_class: "icons-megaphone" + available_for "users" + active_for_controllers (['admin/recruit_news']) + head_link_path "admin_recruit_news_index_path" + + context_link 'recruit_news.all_articles', + :link_path=>"admin_recruit_news_index_path" , + :priority=>1, + :active_for_action=>{'admin/recruit_news'=>'index'}, + :available_for => 'users' + context_link 'recruit_news.manually_sort', + :link_path=>"edit_sort_admin_recruit_news_index_path" , + :priority=>2, + :active_for_action=>{'admin/recruit_news'=>'edit_sort'}, + :available_for => 'managers' + context_link 'new_', + :link_path=>"new_admin_recruit_news_path" , + :priority=>2, + :active_for_action=>{'admin/recruit_news'=>'new'}, + :available_for => 'sub_managers' + context_link 'categories', + :link_path=>"admin_module_app_categories_path" , + :link_arg=>"{:module_app_id=>ModuleApp.find_by(:key=>'recruit_news_mod').id}", + :priority=>3, + :active_for_action=>{'admin/recruit_news'=>'categories'}, + :active_for_category => 'RecruitNewsModule', + :available_for => 'managers' + context_link 'tags', + :link_path=>"admin_module_app_tags_path" , + :link_arg=>"{:module_app_id=>ModuleApp.find_by(:key=>'recruit_news_mod').id}", + :priority=>4, + :active_for_action=>{'admin/recruit_news'=>'tags'}, + :active_for_tag => 'RecruitNewsModule', + :available_for => 'managers' + context_link 'recruit_news.custom_fields_title', + :link_path=>"custom_fields_title_admin_recruit_news_index_path" , + :priority=>5, + :active_for_action=>{'admin/recruit_news'=>'custom_fields_title'}, + :available_for => 'managers' + + context_link 'recruit_news.feed_list', + :link_path=>"admin_recruit_news_feed_path" , + :priority=>6, + :active_for_action=>{'admin/recruit_news'=>'feed'}, + :available_for => 'managers' + context_link 'recruit_news.import', + :link_path=>"admin_recruit_news_import_path" , + :priority=>7, + :active_for_action=>{'admin/recruit_news'=>'import'}, + :available_for => 'managers' + context_link 'recruit_news.settings', + :link_path=>"admin_recruit_news_settings_path" , + :priority=>8, + :active_for_action=>{'admin/recruit_news'=>'settings'}, + :available_for => 'managers' + end + + end + # temp = YAML.load_file(File.join(Rails.root,"config","mongoid.yml")) + # dbsettings = temp["production"]["sessions"]["default"] + # s = Moped::Session.new(dbsettings["hosts"]) + # s.use dbsettings["database"] + # s[:bulletins].indexes.create({expirable_created_at: 1},{ expireAfterSeconds: 180 }) + end + end + end +end diff --git a/lib/recruit_news_mod/migrate.rb b/lib/recruit_news_mod/migrate.rb new file mode 100644 index 0000000..c394596 --- /dev/null +++ b/lib/recruit_news_mod/migrate.rb @@ -0,0 +1,38 @@ +module RecruitNewsMod + module Migrate + def self.call + puts ['event news migrate start'] + gem_root = RecruitNewsMod::Engine.root + require File.join(gem_root, 'app/models/recruit_news_setting') + require File.join(gem_root, 'app/models/recruit_news') + require File.join(gem_root, 'app/models/recruit_news_feed') + require File.join(gem_root, 'app/models/recruit_news_feed_cache') + + setting = RecruitNewsSetting.first + + if !setting.migrate_flag.include?("v1") + RecruitNews.all.pluck(:id, :title).each do |id, title_translations| + if title_translations.nil? + next + end + RecruitNews.where(id: id).view.update_many({ + "$set" => { + title_plain_text: OrbitHelper.get_plain_text_translations(title_translations) + } + }) + end + + setting.migrate_flag << "v1" + setting.save + end + + #solve bug for thousands of generated feed cache + if RecruitNewsFeedCache.count > RecruitNewsFeed.count*5 + RecruitNewsFeedCache.collection.drop + end + RecruitNewsFeedCache.regenerate_all + + puts ['event news migrate end'] + end + end +end \ No newline at end of file diff --git a/lib/recruit_news_mod/version.rb b/lib/recruit_news_mod/version.rb new file mode 100644 index 0000000..382c3e9 --- /dev/null +++ b/lib/recruit_news_mod/version.rb @@ -0,0 +1,3 @@ +module RecruitNewsMod + VERSION = "0.0.1" +end diff --git a/lib/tasks/recruit_news_tasks.rake b/lib/tasks/recruit_news_tasks.rake new file mode 100644 index 0000000..3d94450 --- /dev/null +++ b/lib/tasks/recruit_news_tasks.rake @@ -0,0 +1,8 @@ +desc 'Remove duplicated RecruitNews created by preview' + +namespace :recruit_news do + task :remove_preview_recruit_news => [:environment] do + recruit_news = RecruitNews.where(is_preview: true) + recruit_news.destroy_all + end +end diff --git a/modules/recruit_news_mod/_recruit_news_widget1.html.erb b/modules/recruit_news_mod/_recruit_news_widget1.html.erb new file mode 100644 index 0000000..96329b8 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget1.html.erb @@ -0,0 +1,34 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget10.html.erb b/modules/recruit_news_mod/_recruit_news_widget10.html.erb new file mode 100644 index 0000000..5952aba --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget10.html.erb @@ -0,0 +1,22 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget11.html.erb b/modules/recruit_news_mod/_recruit_news_widget11.html.erb new file mode 100644 index 0000000..2060cbe --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget11.html.erb @@ -0,0 +1,22 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget12.html.erb b/modules/recruit_news_mod/_recruit_news_widget12.html.erb new file mode 100644 index 0000000..6367e85 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget12.html.erb @@ -0,0 +1,27 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + +
{{title-head}}{{date-head}}
+ + {{status}} + + {{title}} +
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget13.html.erb b/modules/recruit_news_mod/_recruit_news_widget13.html.erb new file mode 100644 index 0000000..beb2715 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget13.html.erb @@ -0,0 +1,27 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + +
{{date-head}}{{title-head}}
+ + {{status}} + + {{title}} +
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget14.html.erb b/modules/recruit_news_mod/_recruit_news_widget14.html.erb new file mode 100644 index 0000000..7f30979 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget14.html.erb @@ -0,0 +1,29 @@ +
+

+ {{widget-title}} +

+
+
+ {{main_picture_description}} +
+
    +
  • +
    +

    + + {{status}} + + {{title}} +

    + +
    +
  • +
+
+ +
diff --git a/modules/recruit_news_mod/_recruit_news_widget15.html.erb b/modules/recruit_news_mod/_recruit_news_widget15.html.erb new file mode 100644 index 0000000..3c41db0 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget15.html.erb @@ -0,0 +1,162 @@ +
+
+

+ {{widget-title}} +

+ <%= t("recruit_news.more") %> +
+
+ + +
+ +
+ + diff --git a/modules/recruit_news_mod/_recruit_news_widget16.html.erb b/modules/recruit_news_mod/_recruit_news_widget16.html.erb new file mode 100644 index 0000000..49505e2 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget16.html.erb @@ -0,0 +1,32 @@ +
+ + + + + + + + + + + + + + + + + + + + + +
{{event_date-head}}{{speaker-head}}{{title-head}}{{subtitle-head}}{{host-head}}{{notes-head}}
{{speaker}} + + {{status}} + + {{title}} + {{subtitle}}{{host}}{{notes}}
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget17.html.erb b/modules/recruit_news_mod/_recruit_news_widget17.html.erb new file mode 100644 index 0000000..0f1ed7f --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget17.html.erb @@ -0,0 +1,27 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + +
+ + {{status}} + + {{title-head}}{{title}} + {{speaker-head}}{{speaker}}{{host-head}}{{host}}{{place-head}}{{place}}{{event_date-head}}{{event-time-formated}}{{subtitle}}{{notes-head}}{{notes}}
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget18.html.erb b/modules/recruit_news_mod/_recruit_news_widget18.html.erb new file mode 100644 index 0000000..259df76 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget18.html.erb @@ -0,0 +1,83 @@ +
+
+ {{calendar_title}} + {{widget_title}} +
+
+

+ placeholder + +

+ + + + + + + + + + + + + + +
SunMonTueWedThuFriSat
+
+ +
+<%= stylesheet_link_tag "recruit_news_calendar_widget2" %> + \ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget19.html.erb b/modules/recruit_news_mod/_recruit_news_widget19.html.erb new file mode 100644 index 0000000..daeedf1 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget19.html.erb @@ -0,0 +1,33 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + + + + + + + + + +
{{category-head}}{{speaker-head}}{{event_start_date-head}}{{title-head}}{{event_end_date-head}}{{view-count-head}}
{{category}}{{speaker}}{{event_start_date}} + + {{status}} + + {{title}} + {{event_end_date}}{{view_count}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/_recruit_news_widget2.html.erb b/modules/recruit_news_mod/_recruit_news_widget2.html.erb new file mode 100644 index 0000000..599ce41 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget2.html.erb @@ -0,0 +1,34 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget3.html.erb b/modules/recruit_news_mod/_recruit_news_widget3.html.erb new file mode 100644 index 0000000..94aae6e --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget3.html.erb @@ -0,0 +1,34 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget4.html.erb b/modules/recruit_news_mod/_recruit_news_widget4.html.erb new file mode 100644 index 0000000..21e4747 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget4.html.erb @@ -0,0 +1,108 @@ +
+
+

+ {{widget-title}} +

+ <%= t("recruit_news.more") %> +
+ +
+ + diff --git a/modules/recruit_news_mod/_recruit_news_widget5.html.erb b/modules/recruit_news_mod/_recruit_news_widget5.html.erb new file mode 100644 index 0000000..e23b949 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget5.html.erb @@ -0,0 +1,31 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget6.html.erb b/modules/recruit_news_mod/_recruit_news_widget6.html.erb new file mode 100644 index 0000000..cc9d5a9 --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget6.html.erb @@ -0,0 +1,26 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget7.html.erb b/modules/recruit_news_mod/_recruit_news_widget7.html.erb new file mode 100644 index 0000000..f413c0f --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget7.html.erb @@ -0,0 +1,26 @@ +
+

+ {{widget-title}} +

+ + +
diff --git a/modules/recruit_news_mod/_recruit_news_widget8.html.erb b/modules/recruit_news_mod/_recruit_news_widget8.html.erb new file mode 100644 index 0000000..94cd44d --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget8.html.erb @@ -0,0 +1,29 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + + + +
{{category-head}}{{title-head}}{{date-head}}
{{category}} + + {{status}} + + {{title}} +
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/_recruit_news_widget9.html.erb b/modules/recruit_news_mod/_recruit_news_widget9.html.erb new file mode 100644 index 0000000..8d4272a --- /dev/null +++ b/modules/recruit_news_mod/_recruit_news_widget9.html.erb @@ -0,0 +1,29 @@ +
+

+ {{widget-title}} +

+ + + + + + + + + + + + + + + +
{{date-head}}{{title-head}}{{category-head}}
+ + {{status}} + + {{title}} + {{category}}
+ +
\ No newline at end of file diff --git a/modules/recruit_news_mod/info.json b/modules/recruit_news_mod/info.json new file mode 100644 index 0000000..eb613d0 --- /dev/null +++ b/modules/recruit_news_mod/info.json @@ -0,0 +1,339 @@ +{ + "frontend": [ + { + "filename" : "recruit_news_index1", + "name" : { + "zh_tw" : "1. 標準標題列表-1A ( 模組標題, 類別, 狀態, 標題, 日期 )", + "en" : "1. Standard Title List-1 (widget-title, category, status, title, postdate)" + }, + "thumbnail" : "recruit_news_index1_thumbs.png" + }, + { + "filename" : "recruit_news_index2", + "name" : { + "zh_tw" : "2. 標準標題列表-1B ( 模組標題, 類別, 狀態, 標題, 日期, 瀏覽人次 )", + "en" : "2. Standard Title List-1B (widget-title, category, status, title, postdate, view-count)" + }, + "thumbnail" : "recruit_news_index2_thumbs.png" + }, + { + "filename" : "recruit_news_index3", + "name" : { + "zh_tw" : "3. 標準表格列表-2A ( 模組標題, 日期, 狀態, 標題, 類別 )", + "en" : "3. Standard Table List-2 (widget-title, postdate, status, title, category)" + }, + "thumbnail" : "recruit_news_index3_thumbs.png" + }, + { + "filename" : "recruit_news_index4", + "name" : { + "zh_tw" : "4. 標準表格列表-2B ( 模組標題, 日期, 狀態, 標題, 類別, 瀏覽人次 )", + "en" : "4. Standard Table List-2 (widget-title, postdate, status, title, category, view-count)" + }, + "thumbnail" : "recruit_news_index4_thumbs.png" + }, + { + "filename" : "recruit_news_index5", + "name" : { + "zh_tw" : "5. 左圖右文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "5. Balanced Image + Text(Left) (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_index5_thumbs.png" + }, + { + "filename" : "recruit_news_index6", + "name" : { + "zh_tw" : "6. 右圖左文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "6. Balanced Image + Text(Right) (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_index6_thumbs.png" + }, + { + "filename" : "recruit_news_index7", + "name" : { + "zh_tw" : "7. 三欄圖文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "7. 3-Column Standard Image + Text (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_index7_thumbs.png" + }, + { + "filename" : "recruit_news_index8", + "name" : { + "zh_tw" : "8. 標準文字列表 ( 模組標題, 日期, 類別, 狀態, 標題, 副標題 )", + "en" : "8. Standard Text List (widget-title, postdate, category, status, title, subtitle)" + }, + "thumbnail" : "recruit_news_index8_thumbs.png" + }, + { + "filename" : "recruit_news_index9", + "name" : { + "zh_tw" : "9. 標準標題列表-1 ( 模組標題, 類別, 狀態, 標題, 日期 )", + "en" : "9. Standard Title List-1 (widget-title, category, status, title, postdate)" + }, + "thumbnail" : "recruit_news_index9_thumbs.png" + }, + { + "filename" : "recruit_news_index10", + "name" : { + "zh_tw" : "10. 標準標題列表-2 ( 模組標題, 日期, 狀態, 標題, 類別 )", + "en" : "10. Standard Title List-2 (widget-title, postdate, status, title, category)" + }, + "thumbnail" : "recruit_news_index10_thumbs.png" + }, + { + "filename" : "recruit_news_index11", + "name" : { + "zh_tw" : "11. 精簡標題列表-1 ( 模組標題, 狀態, 標題, 日期 )", + "en" : "11. Simple Title List-1 (widget-title, status, title, postdate)" + }, + "thumbnail" : "recruit_news_index11_thumbs.png" + }, + { + "filename" : "recruit_news_index12", + "name" : { + "zh_tw" : "12. 精簡標題列表-2 ( 模組標題, 日期, 狀態, 標題 )", + "en" : "12. Simple Title List-2 (widget-title, postdate, status, title)" + }, + "thumbnail" : "recruit_news_index12_thumbs.png" + }, + { + "filename" : "recruit_news_index13", + "name" : { + "zh_tw" : "13. 精簡表格列表-1 ( 模組標題, 狀態, 標題, 日期 )", + "en" : "13. Simple Table List (widget-title, status, title, postdate)" + }, + "thumbnail" : "recruit_news_index13_thumbs.png" + }, + { + "filename" : "recruit_news_index14", + "name" : { + "zh_tw" : "14. 精簡表格列表-2 ( 模組標題, 日期, 狀態, 標題 )", + "en" : "14. Simple Table List (widget-title, postdate, status, title)" + }, + "thumbnail" : "recruit_news_index14_thumbs.png" + }, + { + "filename" : "recruit_news_index15", + "name" : { + "zh_tw" : "15. 精簡表格列表-3 ( 模組標題, 日期, 狀態, 標題, 瀏覽人次 )", + "en" : "15. Simple Table List (widget-title, postdate, status, title, view-count)" + }, + "thumbnail" : "recruit_news_index15_thumbs.png" + }, + { + "filename" : "recruit_news_index16", + "name" : { + "zh_tw" : "16. 連結 + 附件表格列表 ( 模組標題, 類別, 狀態, 標題 )", + "en" : "16. Table List including Links and attachments (widget-title, category, status, title, view-count)" + }, + "thumbnail" : "recruit_news_index16_thumbs.png" + }, + { + "filename" : "recruit_news_index17", + "name" : { + "zh_tw" : "17. 標準標題列表-1A ( 類別, 標題, 日期, 張貼人 )", + "en" : "17. Standard Title List-1 ( category, title, postdate, department)" + }, + "thumbnail" : "recruit_news_index1_thumbs.png" + }, + { + "filename" : "recruit_news_index18", + "name" : { + "zh_tw" : "18. 標準標題列表-2 ( 日期, 演講者, 狀態, 標題, 主持人, 備註 )", + "en" : "18. Standard Title List-2 ( EventDate, speaker, status, title, host, notes)" + }, + "thumbnail" : "recruit_news_index1_thumbs.png" + }, + { + "filename" : "recruit_news_index19", + "name" : { + "zh_tw" : "19. 標準標題列表-3 ( 類別, 日期, 演講者, 狀態, 標題, 瀏覽人次 )", + "en" : "19. Standard Title List-3 ( category, EventDate, speaker, status, title, view-count)" + }, + "thumbnail" : "recruit_news_index1_thumbs.png" + }, + { + "filename" : "recruit_news_index20", + "name" : { + "zh_tw" : "20. 標準標題列表-4 ( 類別, 演講者, 事件日期, 狀態, 標題, 截止日期, 瀏覽人次 )", + "en" : "20. Standard Title List-4 ( category, EventDate, speaker, EventDate, status, title, EndDate, view-count)" + }, + "thumbnail" : "recruit_news_index1_thumbs.png" + } + ], + "widgets" : [ + { + "filename" : "recruit_news_widget1", + "name" : { + "zh_tw" : "1. 標準圖文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "1. Standard Image + Text (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget1_thumbs.png" + }, + { + "filename" : "recruit_news_widget2", + "name" : { + "zh_tw" : "2. 左圖右文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "2. Balanced Image + Text(Left) (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget2_thumbs.png" + }, + { + "filename" : "recruit_news_widget3", + "name" : { + "zh_tw" : "3. 右圖左文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "3. Balanced Image + Text(Right) (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget3_thumbs.png" + }, + { + "filename" : "recruit_news_widget4", + "name" : { + "zh_tw" : "4. 三欄圖文 ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "4. 3-Column Standard Image + Text (widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget4_thumbs.png" + }, + { + "filename" : "recruit_news_widget15", + "name" : { + "zh_tw" : "4.5. 三欄圖文-slide ( 模組標題, 圖片, 狀態, 日期, 類別, 標題, 副標題 )", + "en" : "4.5. 3-Column Standard Image + Text -slide(widget-title, image, status, postdate, category, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget4_thumbs.png", + "force_cover" : "true" + }, + { + "filename" : "recruit_news_widget5", + "name" : { + "zh_tw" : "5. 標準文字列表 ( 模組標題, 日期, 類別, 狀態, 標題, 副標題 )", + "en" : "5. Standard Text List (widget-title, postdate, category, status, title, subtitle)" + }, + "thumbnail" : "recruit_news_widget5_thumbs.png" + }, + { + "filename" : "recruit_news_widget6", + "name" : { + "zh_tw" : "6. 標準標題列表-1 ( 模組標題, 類別, 狀態, 標題, 日期 )", + "en" : "6. Standard Title List-1 (widget-title, category, status, title, postdate)" + }, + "thumbnail" : "recruit_news_widget6_thumbs.png" + }, + { + "filename" : "recruit_news_widget7", + "name" : { + "zh_tw" : "7. 標準標題列表-2 ( 模組標題, 日期, 狀態, 標題, 類別 )", + "en" : "7. Standard Title List-2 (widget-title, postdate, status, title, category)" + }, + "thumbnail" : "recruit_news_widget7_thumbs.png" + }, + { + "filename" : "recruit_news_widget8", + "name" : { + "zh_tw" : "8. 標準表格列表-1 ( 模組標題, 類別, 狀態, 標題, 日期 )", + "en" : "8. Standard Table List-1 (widget-title, category, status, title, postdate)" + }, + "thumbnail" : "recruit_news_widget8_thumbs.png" + }, + { + "filename" : "recruit_news_widget9", + "name" : { + "zh_tw" : "9. 標準表格列表-2 ( 模組標題, 日期, 狀態, 標題, 類別 )", + "en" : "9. Standard Table List-2 (widget-title, postdate, status, title, category)" + }, + "thumbnail" : "recruit_news_widget9_thumbs.png" + }, + { + "filename" : "recruit_news_widget10", + "name" : { + "zh_tw" : "10. 精簡標題列表-1 ( 模組標題, 狀態, 標題, 日期 )", + "en" : "10. Simple Title List-1 (widget-title, status, title, postdate)" + }, + "thumbnail" : "recruit_news_widget10_thumbs.png" + }, + { + "filename" : "recruit_news_widget11", + "name" : { + "zh_tw" : "11. 精簡標題列表-2 ( 模組標題, 日期, 狀態, 標題 )", + "en" : "11. Simple Title List-2 (widget-title, postdate, status, title)" + }, + "thumbnail" : "recruit_news_widget11_thumbs.png" + }, + { + "filename" : "recruit_news_widget12", + "name" : { + "zh_tw" : "12. 精簡表格列表-1 ( 模組標題, 狀態, 標題, 日期 )", + "en" : "12. Simple Table List (widget-title, status, title, postdate)" + }, + "thumbnail" : "recruit_news_widget12_thumbs.png" + }, + { + "filename" : "recruit_news_widget13", + "name" : { + "zh_tw" : "13. 精簡表格列表-2 ( 模組標題, 日期, 狀態, 標題 )", + "en" : "13. Simple Table List (widget-title, postdate, status, title)" + }, + "thumbnail" : "recruit_news_widget13_thumbs.png" + }, + { + "filename" : "recruit_news_widget14", + "name" : { + "zh_tw" : "14. 一圖 + 標題列表 ( 模組標題, 圖片, 狀態, 標題, 日期 )", + "en" : "14. 1 Image + Title List (widget-title, image, status, title, postdate)" + }, + "thumbnail" : "recruit_news_widget14_thumbs.png" + }, + { + "filename" : "recruit_news_widget16", + "name" : { + "zh_tw" : "15. 標準表格列表-3 ( 日期, 演講者, 狀態, 標題, 主持人, 備註 )", + "en" : "15. Standard Table List (EventDate, speaker, status, title, host, notes)" + }, + "thumbnail" : "recruit_news_widget13_thumbs.png" + }, + { + "filename" : "recruit_news_widget17", + "name" : { + "zh_tw" : "16. 標準表格列表-3 ( 日期, 狀態, 標題, 演講者, 主持人, 備註 )", + "en" : "16. Standard Table List (EventDate, status, title, speaker, host, notes)" + }, + "thumbnail" : "recruit_news_widget13_thumbs.png", + "force_cover" : "true" + }, + { + "filename" : "recruit_news_widget18", + "name" : { + "zh_tw" : "18. 日歷", + "en" : "18. Calendar" + }, + "force_cover" : "true", + "thumbnail" : "recruit_news_widget13_thumbs.png" + }, + { + "filename" : "recruit_news_widget19", + "name" : { + "zh_tw" : "19. 標準標題列表-3 ( 類別, 演講者, 事件日期, 狀態, 標題, 截止日期, 瀏覽人次 )", + "en" : "19. Standard Title List-3 ( category, EventDate, speaker, EventDate, status, title, EndDate, view-count)" + }, + "thumbnail" : "recruit_news_widget7_thumbs.png" + } + ], + "show" : [ + { + "filename" : "show", + "name" : { + "zh_tw" : "1. 標準內容頁", + "en" : "1. Standard Content Page" + }, + "thumbnail" : "recruit_news_widget1_thumbs.png" + }, + { + "filename" : "show2", + "name" : { + "zh_tw" : "2. 內容頁樣式2", + "en" : "2. Standard Content Page Style 2" + }, + "thumbnail" : "recruit_news_widget1_thumbs.png" + } + ] +} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index1.html.erb b/modules/recruit_news_mod/recruit_news_index1.html.erb new file mode 100644 index 0000000..fcb4c22 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index1.html.erb @@ -0,0 +1,25 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + +
{{category-head}}{{title-head}}{{date-head}}
{{category}} + + {{status}} + + {{title}} +
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index10.html.erb b/modules/recruit_news_mod/recruit_news_index10.html.erb new file mode 100644 index 0000000..ffb9b4b --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index10.html.erb @@ -0,0 +1,22 @@ +
+

{{page-title}}

+ > +
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index11.html.erb b/modules/recruit_news_mod/recruit_news_index11.html.erb new file mode 100644 index 0000000..959204c --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index11.html.erb @@ -0,0 +1,18 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index12.html.erb b/modules/recruit_news_mod/recruit_news_index12.html.erb new file mode 100644 index 0000000..6b961b6 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index12.html.erb @@ -0,0 +1,18 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index13.html.erb b/modules/recruit_news_mod/recruit_news_index13.html.erb new file mode 100644 index 0000000..aa3929a --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index13.html.erb @@ -0,0 +1,23 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + +
{{title-head}}{{date-head}}
+ + {{status}} + + {{title}} +
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index14.html.erb b/modules/recruit_news_mod/recruit_news_index14.html.erb new file mode 100644 index 0000000..3ca24bf --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index14.html.erb @@ -0,0 +1,23 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + +
{{date-head}}{{title-head}}
+ + {{status}} + + {{title}} +
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index15.html.erb b/modules/recruit_news_mod/recruit_news_index15.html.erb new file mode 100644 index 0000000..0adc1e4 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index15.html.erb @@ -0,0 +1,25 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + +
{{date-head}}{{title-head}}{{view-count-head}}
+ + {{status}} + + {{title}} + {{view_count}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index16.html.erb b/modules/recruit_news_mod/recruit_news_index16.html.erb new file mode 100644 index 0000000..2e5635c --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index16.html.erb @@ -0,0 +1,39 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + +
{{date-head}}{{title-head}}{{link-head}}{{file-head}}
+ + {{status}} + + {{title}} + + +
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index17.html.erb b/modules/recruit_news_mod/recruit_news_index17.html.erb new file mode 100644 index 0000000..84ef923 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index17.html.erb @@ -0,0 +1,27 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + +
{{category-head}}{{title-head}}{{date-head}}{{department-head}}
{{category}} + + {{status}} + + {{title}} + {{department}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index18.html.erb b/modules/recruit_news_mod/recruit_news_index18.html.erb new file mode 100644 index 0000000..34922c2 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index18.html.erb @@ -0,0 +1,29 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + + + +
{{event_date-head}}{{speaker-head}}{{title-head}}{{host-head}}{{notes-head}}
{{speaker}} + + {{status}} + + {{title}} + {{host}}{{notes}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index19.html.erb b/modules/recruit_news_mod/recruit_news_index19.html.erb new file mode 100644 index 0000000..98c18e3 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index19.html.erb @@ -0,0 +1,29 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + + + +
{{category-head}}{{event_date-head}}{{speaker-head}}{{title-head}}{{view-count-head}}
{{category}}{{speaker}} + + {{status}} + + {{title}} + {{view_count}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index2.html.erb b/modules/recruit_news_mod/recruit_news_index2.html.erb new file mode 100644 index 0000000..25d4bdf --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index2.html.erb @@ -0,0 +1,27 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + +
{{category-head}}{{title-head}}{{date-head}}{{view-count-head}}
{{category}} + + {{status}} + + {{title}} + {{view_count}}
+
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index20.html.erb b/modules/recruit_news_mod/recruit_news_index20.html.erb new file mode 100644 index 0000000..6d08d57 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index20.html.erb @@ -0,0 +1,31 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + + + + + +
{{category-head}}{{speaker-head}}{{event_start_date-head}}{{title-head}}{{event_end_date-head}}{{view-count-head}}
{{category}}{{speaker}}{{event_start_date}} + + {{status}} + + {{title}} + {{event_end_date}}{{view_count}}
+
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index3.html.erb b/modules/recruit_news_mod/recruit_news_index3.html.erb new file mode 100644 index 0000000..b6082ff --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index3.html.erb @@ -0,0 +1,25 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + +
{{date-head}}{{title-head}}{{category-head}}
+ + {{status}} + + {{title}} + {{category}}
+
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index4.html.erb b/modules/recruit_news_mod/recruit_news_index4.html.erb new file mode 100644 index 0000000..e380e8a --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index4.html.erb @@ -0,0 +1,27 @@ +
+

{{page-title}}

+ + + + + + + + + + + + + + + + + +
{{date-head}}{{title-head}}{{category-head}}{{view-count-head}}
+ + {{status}} + + {{title}} + {{category}}{{view_count}}
+
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index5.html.erb b/modules/recruit_news_mod/recruit_news_index5.html.erb new file mode 100644 index 0000000..8cbdcb4 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index5.html.erb @@ -0,0 +1,30 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} diff --git a/modules/recruit_news_mod/recruit_news_index6.html.erb b/modules/recruit_news_mod/recruit_news_index6.html.erb new file mode 100644 index 0000000..3461f6f --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index6.html.erb @@ -0,0 +1,30 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index7.html.erb b/modules/recruit_news_mod/recruit_news_index7.html.erb new file mode 100644 index 0000000..c4e5c9b --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index7.html.erb @@ -0,0 +1,83 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} + diff --git a/modules/recruit_news_mod/recruit_news_index8.html.erb b/modules/recruit_news_mod/recruit_news_index8.html.erb new file mode 100644 index 0000000..9591729 --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index8.html.erb @@ -0,0 +1,26 @@ +
+

{{page-title}}

+
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/recruit_news_index9.html.erb b/modules/recruit_news_mod/recruit_news_index9.html.erb new file mode 100644 index 0000000..b37a7ef --- /dev/null +++ b/modules/recruit_news_mod/recruit_news_index9.html.erb @@ -0,0 +1,22 @@ +
+

{{page-title}}

+ +
+{{pagination_goes_here}} \ No newline at end of file diff --git a/modules/recruit_news_mod/show.html.erb b/modules/recruit_news_mod/show.html.erb new file mode 100644 index 0000000..b0358d6 --- /dev/null +++ b/modules/recruit_news_mod/show.html.erb @@ -0,0 +1,65 @@ +
+

{{title}}

+ + + +
+
+ + {{img_description}} +
+
{{subtitle_ann}}
+

{{body}}

+
+
+
+

{{notes}}

+
+ +
+{{link_to_edit}} \ No newline at end of file diff --git a/modules/recruit_news_mod/show2.html.erb b/modules/recruit_news_mod/show2.html.erb new file mode 100644 index 0000000..f9fe8c2 --- /dev/null +++ b/modules/recruit_news_mod/show2.html.erb @@ -0,0 +1,67 @@ +
+

{{title}}

+ + + +
+
+
+ + {{img_description}} +
+
+
{{subtitle_ann}}
+

{{body}}

+
+
+
+

{{notes}}

+
+ +
+{{link_to_edit}} diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index10_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index10_thumbs.png new file mode 100644 index 0000000..0745dc6 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index10_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index11_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index11_thumbs.png new file mode 100644 index 0000000..8dc2261 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index11_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index12_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index12_thumbs.png new file mode 100644 index 0000000..2e00654 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index12_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index13_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index13_thumbs.png new file mode 100644 index 0000000..82eee2c Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index13_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index14_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index14_thumbs.png new file mode 100644 index 0000000..0a58044 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index14_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index15_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index15_thumbs.png new file mode 100644 index 0000000..cb9ed5e Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index15_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index16_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index16_thumbs.png new file mode 100644 index 0000000..6ecaa4e Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index16_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index1_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index1_thumbs.png new file mode 100644 index 0000000..0ad29c4 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index1_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index2_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index2_thumbs.png new file mode 100644 index 0000000..d7baca7 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index2_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index3_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index3_thumbs.png new file mode 100644 index 0000000..0193f81 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index3_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index4_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index4_thumbs.png new file mode 100644 index 0000000..7c0a551 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index4_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index5_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index5_thumbs.png new file mode 100644 index 0000000..832fe35 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index5_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index6_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index6_thumbs.png new file mode 100644 index 0000000..eac8619 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index6_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index7_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index7_thumbs.png new file mode 100644 index 0000000..b69abd9 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index7_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index8_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index8_thumbs.png new file mode 100644 index 0000000..cf6eb30 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index8_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_index9_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_index9_thumbs.png new file mode 100644 index 0000000..9fc7c23 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_index9_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget10_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget10_thumbs.png new file mode 100644 index 0000000..8dc2261 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget10_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget11_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget11_thumbs.png new file mode 100644 index 0000000..2e00654 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget11_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget12_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget12_thumbs.png new file mode 100644 index 0000000..82eee2c Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget12_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget13_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget13_thumbs.png new file mode 100644 index 0000000..0a58044 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget13_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget14_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget14_thumbs.png new file mode 100644 index 0000000..d1cab18 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget14_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget1_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget1_thumbs.png new file mode 100644 index 0000000..77ba0a8 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget1_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget2_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget2_thumbs.png new file mode 100644 index 0000000..832fe35 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget2_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget3_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget3_thumbs.png new file mode 100644 index 0000000..eac8619 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget3_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget4_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget4_thumbs.png new file mode 100644 index 0000000..b69abd9 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget4_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget5_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget5_thumbs.png new file mode 100644 index 0000000..cf6eb30 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget5_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget6_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget6_thumbs.png new file mode 100644 index 0000000..9fc7c23 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget6_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget7_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget7_thumbs.png new file mode 100644 index 0000000..0745dc6 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget7_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget8_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget8_thumbs.png new file mode 100644 index 0000000..7cfddf7 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget8_thumbs.png differ diff --git a/modules/recruit_news_mod/thumbs/recruit_news_widget9_thumbs.png b/modules/recruit_news_mod/thumbs/recruit_news_widget9_thumbs.png new file mode 100644 index 0000000..b0a2bb4 Binary files /dev/null and b/modules/recruit_news_mod/thumbs/recruit_news_widget9_thumbs.png differ diff --git a/recruit_news_mod.gemspec b/recruit_news_mod.gemspec new file mode 100644 index 0000000..0a6d23f --- /dev/null +++ b/recruit_news_mod.gemspec @@ -0,0 +1,173 @@ +# encoding: UTF-8 +$:.push File.expand_path("../lib", __FILE__) + +# Maintain your gem's version: +require "recruit_news_mod/version" +require "json" +bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install' +if bundle_update_flag + require File.expand_path("../update_recruit_news", __FILE__) + env_pwd = ENV['PWD'] + begin + require ::File.expand_path('app/helpers/bundler_helper.rb', env_pwd) + extend BundlerHelper + rescue LoadError + def bundler_with_clean_env(&block) + if block_given? + if Bundler.respond_to?(:with_unbundled_env) + Bundler.with_unbundled_env(&block) + else + Bundler.with_clean_env(&block) + end + end + end + end + app_path = File.expand_path(__dir__) + template_path = env_pwd + '/app/templates' + all_template = Dir.glob(template_path+'/*/') + default_info_contents = JSON.parse(File.read("#{app_path}/modules/recruit_news_mod/info.json")) rescue {} + default_recruit_news_index_info = default_info_contents["frontend"].sort_by{|h| h["filename"].to_f} rescue [] + default_recruit_news_widget_info = default_info_contents["widgets"].sort_by{|h| h["filename"].to_f} rescue [] + default_recruit_news_show_info = default_info_contents["show"] rescue nil + all_template.each do |folder| + if !folder.include?('mobile') + if Dir.exist?("#{folder}modules/recruit_news") + bundler_with_clean_env{system ("cp -rf #{folder}modules/recruit_news #{folder}modules/recruit_news_mod && rm -rf #{folder}modules/recruit_news")} + end + if Dir.exist?("#{folder}modules/recruit_news_mod/recruit_news") + bundler_with_clean_env{system ("cp -rf #{folder}modules/recruit_news_mod/recruit_news/* #{folder}modules/recruit_news_mod/. && rm -rf #{folder}modules/recruit_news_mod/recruit_news")} + end + info_json_file = "#{folder}modules/recruit_news_mod/info.json" + if File.exist?(info_json_file) + bundler_with_clean_env{system ('cp -f '+ app_path + '/modules/recruit_news_mod/show.html.erb ' + "#{folder}modules/recruit_news_mod/.")} + update_recruit_news_template(folder) + begin + file_text = File.read(info_json_file) rescue "" + encode_file_text = file_text.encode("UTF-8", "UTF-8", invalid: :replace, replace: "???") + next if (encode_file_text.include?("???") rescue true) + info = JSON.parse(encode_file_text) rescue {} + flag = (info.count != 0 rescue false) + if flag + puts "Checking recruit_news index" + index_info = info["frontend"].sort_by{|h| h["filename"].to_i} rescue [] + last_index = index_info.collect{|v| v["filename"].to_s.scan(/\d+/).collect{|v1| v1.to_i}}.flatten.sort[-1] rescue nil + update_index_flag = false + if !last_index.nil? + idx_regex = /^(\d+[\. \t]*)|[ \t]+$/ + default_recruit_news_index_info.each do |h| + name_without_index = h["name"]["zh_tw"].gsub(idx_regex,'') + index_info_index = (index_info.index{|hh| hh["name"]["zh_tw"].gsub(idx_regex,'') == name_without_index}||-1 rescue -1) + if index_info_index == -1 + update_index_flag = true + copy_h = h.dup + h.delete("force_cover") + last_index = last_index + 1 + copy_h["filename"] = copy_h["filename"].sub(/\d+/){|ff| last_index.to_s} + copy_h["name"].keys.each do |locale| + copy_h["name"][locale] = copy_h["name"][locale].sub(/\d+/){|ff| last_index.to_s} + end + index_info << copy_h + bundler_with_clean_env{%x[cp -f #{app_path}/modules/recruit_news_mod/#{h["filename"]}.html.erb #{folder}modules/recruit_news_mod/#{copy_h["filename"]}.html.erb]} + elsif h["force_cover"] == "true" + bundler_with_clean_env{%x[cp -f #{app_path}/modules/recruit_news_mod/#{h["filename"]}.html.erb #{folder}modules/recruit_news_mod/#{index_info[index_info_index]["filename"]}.html.erb]} + end + end + if update_index_flag + info["frontend"] = index_info + puts "Writing json #{info["frontend"].count} in #{info_json_file}" + end + end + puts "Checking recruit_news widgets" + widget_info = info["widgets"].sort_by{|h| h["filename"].to_i} rescue [] + last_index = widget_info.collect{|v| v["filename"].to_s.scan(/\d+/).collect{|v1| v1.to_i}}.flatten.sort[-1] rescue nil + update_widget_flag = false + if !last_index.nil? + idx_regex = /^(\d+[\. \t]*)|[ \t]+$/ + default_recruit_news_widget_info.each do |h| + name_without_index = h["name"]["zh_tw"].gsub(idx_regex,'') + widget_info_index = (widget_info.index{|hh| hh["name"]["zh_tw"].gsub(idx_regex,'') == name_without_index}||-1 rescue -1) + if widget_info_index == -1 + update_widget_flag = true + copy_h = h.dup + h.delete("force_cover") + last_index = last_index + 1 + copy_h["filename"] = copy_h["filename"].sub(/\d+/){|ff| last_index.to_s} + copy_h["name"].keys.each do |locale| + copy_h["name"][locale] = copy_h["name"][locale].sub(/\d+/){|ff| last_index.to_s} + end + widget_info << copy_h + bundler_with_clean_env{%x[cp -f #{app_path}/modules/recruit_news_mod/_#{h["filename"]}.html.erb #{folder}modules/recruit_news_mod/_#{copy_h["filename"]}.html.erb]} + elsif h["force_cover"] == "true" + bundler_with_clean_env{%x[cp -f #{app_path}/modules/recruit_news_mod/_#{h["filename"]}.html.erb #{folder}modules/recruit_news_mod/_#{widget_info[widget_info_index]["filename"]}.html.erb]} + end + end + if update_widget_flag + info["widgets"] = widget_info + puts "Writing json #{info["widgets"].count} in #{info_json_file}" + end + end + + update_show_flag = false + if !default_recruit_news_show_info.nil? + update_show_flag = info["show"] != default_recruit_news_show_info + info["show"] = default_recruit_news_show_info + default_recruit_news_show_info.each do |info_detail| + filename = info_detail['filename'] + bundler_with_clean_env{%x[cp -f #{app_path}/modules/recruit_news_mod/#{filename}.html.erb #{folder}modules/recruit_news_mod/#{filename}.html.erb]} + end + end + + if update_index_flag || update_widget_flag || update_show_flag + begin + info_json = JSON.pretty_generate(info).gsub(":[",":[\n").gsub(":{",":{\n") + rescue + info_json = info.to_s.gsub("=>",": \n") + end + File.open(info_json_file,"w+"){|f| f.write(info_json)} + end + end + rescue => e + puts e + puts "There has some error when checking recruit_news widgets" + end + else + if !Dir.exist?(File.dirname(info_json_file)) && Dir.exist?(File.dirname(File.dirname(info_json_file))) + bundler_with_clean_env{system ('cp -r '+ app_path + '/modules/ ' + folder)} + end + end + end + end + + # all_template.each do |folder| + # if !folder.include?('mobile') + # moudle_path = "#{folder}modules/universal_table/" + # begin + # if Dir.exist?(File.dirname(moudle_path)) + # bundler_with_clean_env{system ('cp -r '+ app_path + '/modules/ ' + folder)} + # end + # rescue => e + # puts "There was some error when updating recruit_news widget." + # end + # end + # end +end +# Describe your gem and declare its dependencies: +Gem::Specification.new do |s| + s.name = "recruit_news_mod" + s.version = RecruitNewsMod::VERSION + s.authors = ["RulingDigital"] + s.email = ["orbit@rulingcom.com"] + s.homepage = "http://www.rulingcom.com" + s.summary = "RecruitNews for Orbit" + s.description = "RecruitNews for Orbit" + s.license = "MIT" + s.metadata = { + "_require" => "#{File.expand_path("../app/models/recruit_news_setting", __FILE__)}", + "global_hash" => "{enable_manually_sort: (RecruitNewsSetting.first.enable_manually_sort rescue false), is_postdate_sort_first: (RecruitNewsSetting.first.is_postdate_sort_first rescue false)}" + } + + s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] + s.test_files = Dir["test/**/*"] + + s.add_dependency "rufus-scheduler", "~> 3.6.0" +end diff --git a/test/bulletin_test.rb b/test/bulletin_test.rb new file mode 100644 index 0000000..10cd840 --- /dev/null +++ b/test/bulletin_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class BulletinTest < ActiveSupport::TestCase + test "truth" do + assert_kind_of Module, Bulletin + end +end diff --git a/test/controllers/admin/announcements_controller_test.rb b/test/controllers/admin/announcements_controller_test.rb new file mode 100644 index 0000000..1bacec2 --- /dev/null +++ b/test/controllers/admin/announcements_controller_test.rb @@ -0,0 +1,14 @@ +require 'test_helper' + +class Admin::AnnouncementsControllerTest < ActionController::TestCase + test "should get new" do + get :new + assert_response :success + end + + test "should get create" do + get :create + assert_response :success + end + +end diff --git a/test/dummy/README.rdoc b/test/dummy/README.rdoc new file mode 100644 index 0000000..dd4e97e --- /dev/null +++ b/test/dummy/README.rdoc @@ -0,0 +1,28 @@ +== README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... + + +Please feel free to use a different markup language if you do not plan to run +rake doc:app. diff --git a/test/dummy/Rakefile b/test/dummy/Rakefile new file mode 100644 index 0000000..ba6b733 --- /dev/null +++ b/test/dummy/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/test/dummy/app/assets/images/.keep b/test/dummy/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/assets/javascripts/application.js b/test/dummy/app/assets/javascripts/application.js new file mode 100644 index 0000000..5bc2e1c --- /dev/null +++ b/test/dummy/app/assets/javascripts/application.js @@ -0,0 +1,13 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require_tree . diff --git a/test/dummy/app/assets/stylesheets/application.css b/test/dummy/app/assets/stylesheets/application.css new file mode 100644 index 0000000..a443db3 --- /dev/null +++ b/test/dummy/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/test/dummy/app/controllers/application_controller.rb b/test/dummy/app/controllers/application_controller.rb new file mode 100644 index 0000000..d83690e --- /dev/null +++ b/test/dummy/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception +end diff --git a/test/dummy/app/controllers/concerns/.keep b/test/dummy/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/helpers/application_helper.rb b/test/dummy/app/helpers/application_helper.rb new file mode 100644 index 0000000..de6be79 --- /dev/null +++ b/test/dummy/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/test/dummy/app/mailers/.keep b/test/dummy/app/mailers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/models/.keep b/test/dummy/app/models/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/models/concerns/.keep b/test/dummy/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/views/layouts/application.html.erb b/test/dummy/app/views/layouts/application.html.erb new file mode 100644 index 0000000..593a778 --- /dev/null +++ b/test/dummy/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + Dummy + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/test/dummy/bin/bundle b/test/dummy/bin/bundle new file mode 100644 index 0000000..66e9889 --- /dev/null +++ b/test/dummy/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/test/dummy/bin/rails b/test/dummy/bin/rails new file mode 100644 index 0000000..728cd85 --- /dev/null +++ b/test/dummy/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/test/dummy/bin/rake b/test/dummy/bin/rake new file mode 100644 index 0000000..1724048 --- /dev/null +++ b/test/dummy/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/test/dummy/config.ru b/test/dummy/config.ru new file mode 100644 index 0000000..5bc2a61 --- /dev/null +++ b/test/dummy/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb new file mode 100644 index 0000000..091c8f5 --- /dev/null +++ b/test/dummy/config/application.rb @@ -0,0 +1,29 @@ +require File.expand_path('../boot', __FILE__) + +# Pick the frameworks you want: +# require "active_record/railtie" +require "action_controller/railtie" +require "action_mailer/railtie" +require "action_view/railtie" +require "sprockets/railtie" +require "rails/test_unit/railtie" + +Bundler.require(*Rails.groups) +require "bulletin" + +module Dummy + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + end +end + diff --git a/test/dummy/config/boot.rb b/test/dummy/config/boot.rb new file mode 100644 index 0000000..6266cfc --- /dev/null +++ b/test/dummy/config/boot.rb @@ -0,0 +1,5 @@ +# Set up gems listed in the Gemfile. +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__) + +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) +$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__) diff --git a/test/dummy/config/environment.rb b/test/dummy/config/environment.rb new file mode 100644 index 0000000..ee8d90d --- /dev/null +++ b/test/dummy/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/test/dummy/config/environments/development.rb b/test/dummy/config/environments/development.rb new file mode 100644 index 0000000..a384d95 --- /dev/null +++ b/test/dummy/config/environments/development.rb @@ -0,0 +1,34 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/test/dummy/config/environments/production.rb b/test/dummy/config/environments/production.rb new file mode 100644 index 0000000..4f67ce3 --- /dev/null +++ b/test/dummy/config/environments/production.rb @@ -0,0 +1,80 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable Rails's static asset server (Apache or nginx will already do this). + config.serve_static_assets = false + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Generate digests for assets URLs. + config.assets.digest = true + + # Version of your assets, change this if you want to expire all your assets. + config.assets.version = '1.0' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Set to :debug to see everything in the log. + config.log_level = :info + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = "http://assets.example.com" + + # Precompile additional assets. + # application.js, application.css, and all non-JS/CSS in app/assets folder are already added. + # config.assets.precompile += %w( search.js ) + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Disable automatic flushing of the log to improve performance. + # config.autoflush_log = false + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new +end diff --git a/test/dummy/config/environments/test.rb b/test/dummy/config/environments/test.rb new file mode 100644 index 0000000..053f5b6 --- /dev/null +++ b/test/dummy/config/environments/test.rb @@ -0,0 +1,39 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static asset server for tests with Cache-Control for performance. + config.serve_static_assets = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/test/dummy/config/initializers/backtrace_silencers.rb b/test/dummy/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..59385cd --- /dev/null +++ b/test/dummy/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/test/dummy/config/initializers/cookies_serializer.rb b/test/dummy/config/initializers/cookies_serializer.rb new file mode 100644 index 0000000..7a06a89 --- /dev/null +++ b/test/dummy/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json \ No newline at end of file diff --git a/test/dummy/config/initializers/filter_parameter_logging.rb b/test/dummy/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..4a994e1 --- /dev/null +++ b/test/dummy/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/test/dummy/config/initializers/inflections.rb b/test/dummy/config/initializers/inflections.rb new file mode 100644 index 0000000..ac033bf --- /dev/null +++ b/test/dummy/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/test/dummy/config/initializers/mime_types.rb b/test/dummy/config/initializers/mime_types.rb new file mode 100644 index 0000000..72aca7e --- /dev/null +++ b/test/dummy/config/initializers/mime_types.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf +# Mime::Type.register_alias "text/html", :iphone diff --git a/test/dummy/config/initializers/session_store.rb b/test/dummy/config/initializers/session_store.rb new file mode 100644 index 0000000..e766b67 --- /dev/null +++ b/test/dummy/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_dummy_session' diff --git a/test/dummy/config/initializers/wrap_parameters.rb b/test/dummy/config/initializers/wrap_parameters.rb new file mode 100644 index 0000000..b81ea74 --- /dev/null +++ b/test/dummy/config/initializers/wrap_parameters.rb @@ -0,0 +1,9 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end diff --git a/test/dummy/config/locales/en.yml b/test/dummy/config/locales/en.yml new file mode 100644 index 0000000..0653957 --- /dev/null +++ b/test/dummy/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/test/dummy/config/routes.rb b/test/dummy/config/routes.rb new file mode 100644 index 0000000..3f66539 --- /dev/null +++ b/test/dummy/config/routes.rb @@ -0,0 +1,56 @@ +Rails.application.routes.draw do + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/test/dummy/config/secrets.yml b/test/dummy/config/secrets.yml new file mode 100644 index 0000000..e9213c0 --- /dev/null +++ b/test/dummy/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: 51f457918fc204bef2280de08080b24d6289997cc1af905e47aead42b5e027b6bc27cd6cbd1cb11a34d8df4163d63db2a0ff973acfa11b239a5dd15d6bfb5bfd + +test: + secret_key_base: 1a2d31f4fb35a33e52a69eac67e125b9b1ba5b302e8d3468e60282061a8e74d1a8d977fb88f2eb001aecb99c9c3fbde29e0c7c5ac5d548e1458772ee50ed48e9 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/test/dummy/lib/assets/.keep b/test/dummy/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/log/.keep b/test/dummy/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/public/404.html b/test/dummy/public/404.html new file mode 100644 index 0000000..b612547 --- /dev/null +++ b/test/dummy/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/422.html b/test/dummy/public/422.html new file mode 100644 index 0000000..a21f82b --- /dev/null +++ b/test/dummy/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/500.html b/test/dummy/public/500.html new file mode 100644 index 0000000..061abc5 --- /dev/null +++ b/test/dummy/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/favicon.ico b/test/dummy/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/test/helpers/admin/announcements_helper_test.rb b/test/helpers/admin/announcements_helper_test.rb new file mode 100644 index 0000000..a867b12 --- /dev/null +++ b/test/helpers/admin/announcements_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class Admin::AnnouncementsHelperTest < ActionView::TestCase +end diff --git a/test/integration/navigation_test.rb b/test/integration/navigation_test.rb new file mode 100644 index 0000000..eec8c0e --- /dev/null +++ b/test/integration/navigation_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class NavigationTest < ActionDispatch::IntegrationTest + + # test "the truth" do + # assert true + # end +end + diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..1e26a31 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,15 @@ +# Configure Rails Environment +ENV["RAILS_ENV"] = "test" + +require File.expand_path("../dummy/config/environment.rb", __FILE__) +require "rails/test_help" + +Rails.backtrace_cleaner.remove_silencers! + +# Load support files +Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } + +# Load fixtures from the engine +if ActiveSupport::TestCase.method_defined?(:fixture_path=) + ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__) +end diff --git a/update_recruit_news.rb b/update_recruit_news.rb new file mode 100644 index 0000000..4920da0 --- /dev/null +++ b/update_recruit_news.rb @@ -0,0 +1,61 @@ +def add_css_style_for_block(c,head_key,value_key,css_key) + #tmp = [] + c_tp = c + flag = false + if !c.include?("{{#{css_key}}}") + c_tp = c.clone() + c.scan(/((?:【| )*{{#{head_key}}}((?:(?!).)*>/) + tag_gs.each do |tag_g| + if tag_g[0] + s = s - c[0...s].reverse.match(/>(?:(?!<|>).)*#{tag_g[1].reverse}).)*>/).offset(0)[1] + e + end + end + inner_c = c[s...e] + wrap_tag = c[e..-1].match(/<\/(\w+)(?:(?!<|>).)*>/) + e = wrap_tag.offset(0)[1] + e + s = s - c[0...s].reverse.match(/>(?:(?!<|>).)*#{wrap_tag[1].reverse}).)*)(>.*)/m) do |m| + v1 = $1 + v2 = $2 + v3 = $3 + have_style_flag = false + v2 = v2.gsub(/(style=(?:\"|\'))((?:(?!\"|\').)*)((?:\"|\'))/) do |m2| + have_style_flag = true + "#{$1}#{$2}{{#{css_key}}}#{$3}" + end + if !have_style_flag + v2 = v2 + " style=\"{{#{css_key}}}\"" + end + v1+v2+v3 + end + c_tp = c_tp.sub(outer_c,outer_c_new) + else + c_tp = c_tp.sub(inner_c,"#{inner_c}<\/span>") + end + end + end + #[tmp,c_tp] + [flag,c_tp] +end +def update_recruit_news_template(folder) + Dir["#{folder}modules/recruit_news_mod/*.html.erb"].each do |f| + c = File.open(f,'r'){|f1| f1.read}.encode("UTF-8", "UTF-8", invalid: :replace, replace: "???") + next if (c.include?("???") rescue true) + flag1,c = add_css_style_for_block(c,'speaker-head','speaker','speaker-css') + flag2,c = add_css_style_for_block(c,'host-head','host','host-css') + flag3,c = add_css_style_for_block(c,'place-head','place','place-css') + if flag1 || flag2 || flag3 + puts ['update file:',f] + File.open(f,'w'){|f1| f1.write(c)} + end + end +end \ No newline at end of file