PHP Classes

File: modules/system/assets/js/updates/details.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/js/updates/details.js   Download  
File: modules/system/assets/js/updates/details.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 481 bytes
 

Contents

Class file image Download
/* * Details page */ +function ($) { "use strict"; var UpdateDetails = function () { this.init() } UpdateDetails.prototype.init = function() { $(document).ready(function() { $('.plugin-details-content pre').addClass('prettyprint') prettyPrint() }) } if ($.wn === undefined) $.wn = {} if ($.oc === undefined) $.oc = $.wn $.wn.updateDetails = new UpdateDetails; }(window.jQuery);