/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/res/js
NameSizeModeActions
cookies/-0755rm
display-as-translated/-0755rm
languages/-0755rm
mcs/-0755rm
media/-0755rm
requirements/-0755rm
settings/-0755rm
shared/-0755rm
taxonomy-translation/-0755rm
tm-dashboard/-0755rm
tooltip/-0755rm
tp-polling/-0755rm
translation-editor/-0755rm
translation-feedback/-0755rm
affiliate-info.js8240644editdlrm
ate-dashboard.php16930644editdlrm
ate-jobs-migration.js6280644editdlrm
ate-widget.php14760644editdlrm
clear-preferred-ts.js14300644editdlrm
content-translation.js51820644editdlrm
dismiss-taxonomy-help-notice.js5640644editdlrm
fix-tables-collation.js7340644editdlrm
fix-tp-id.js7330644editdlrm
icl-admin-notifier.js19350644editdlrm
iframeResizer.min.js55710644editdlrm
jquery.cookie.js28170644editdlrm
language-switchers-settings.js303500644editdlrm
language-switchers-settings.min.js146690644editdlrm
languages.js226990644editdlrm
menus-sync.js58810644editdlrm
orphan-comments.js26270644editdlrm
otgs-notices.js36290644editdlrm
overview.js2700644editdlrm
post-edit-alert.js14480644editdlrm
post-edit-languages.js23900644editdlrm
post-edit-terms.js53900644editdlrm
post-edit.js136220644editdlrm
post-list-quickedit.js15150644editdlrm
refresh-services.js5840644editdlrm
reset-preferred-ts.js13400644editdlrm
reset-pro-trans-config.js25600644editdlrm
scripts-tm.js83940644editdlrm
scripts.js193530644editdlrm
set-translation-role.js20470644editdlrm
sitepress.js3060644editdlrm
support-tm-logs.js47550644editdlrm
tags.js73000644editdlrm
taxonomy-hierarchy-sync-message.js7240644editdlrm
templates-compiled.js367080644editdlrm
theme-localization.js21650644editdlrm
theme-plugin-localization.js19790644editdlrm
translation-options.js2600644editdlrm
translation-proxy.js3680644editdlrm
translation-roles-select2.js16480644editdlrm
translation-services.js110490644editdlrm
translation-synchronization.js2600644editdlrm
troubleshooting.js81400644editdlrm
unlisted-translation-service.js62760644editdlrm
widgets.js6630644editdlrm
widgets.min.js3960644editdlrm
wizard.js44220644editdlrm
wp-nav-menus.js15980644editdlrm
wpml-color-picker.js10210644editdlrm
wpml-language-per-domain-sso.js3750644editdlrm
wpml-progressbar.js18110644editdlrm
wpml-proxy-interceptor.js82720644editdlrm
wpml-simple-language-selector.js13370644editdlrm
wpml-simple-language-selector.min.js9590644editdlrm
wpml-tp-api.js12230644editdlrm
wpml-user-language.js8850644editdlrm
xdomain-data.js33730644editdlrm
Edit: /home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/res/js/wpml-progressbar.js (1811B)
/* global icl_ajxloaderimg */ var ProgressBar = Backbone.View.extend({ dom: false, overall_count: 0, done_count: 0, ajax_loader_img: false, progress_label_value: false, progress_label: false, actionText : '', initialize: function () { var self = this; self.ajax_loader_img = jQuery(icl_ajxloaderimg); self.dom = jQuery('
'); self.progress_label = self.dom.find(".progress-label"); self.progress_label_value = self.dom.find(".value"); return self; }, start: function () { var self = this; self.ajax_loader_img.appendTo(self.progress_label); self.getDomElement().progressbar({value: false, max: 100}); self.getDomElement().fadeIn(); self.progress_label_value.text(''); return self; }, change: function (change) { var self = this; self.done_count += change; var value = Math.min(Math.round(self.done_count / self.overall_count * 100), 100); self.progress_label_value.text(self.actionText + " " + value + "%"); self.getDomElement().progressbar('value', value); }, complete: function (text, callback) { var self = this; self.ajax_loader_img.remove(); self.progress_label_value.text(text); if (typeof callback === 'function') { callback(self); } }, getRemainingCount: function () { var self = this; return self.overall_count - self.done_count; }, getDomElement: function () { var self = this; return self.dom; }, stop: function () { var self = this; self.getDomElement().hide(); return self; } });