PHP Classes

File: Application/Module/Core/Public/Js/admin_controller.js

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Application/Module/Core/Public/Js/admin_controller.js   Download  
File: Application/Module/Core/Public/Js/admin_controller.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change: Update JS & CSS for minifying
Date: 7 years ago
Size: 551 bytes
 

Contents

Class file image Download
ADMIN_CONTROLLER = { init: function () { $('.add-new-controller').on('click',function(e){ var url = CORE.params['sBaseAdminUrl'] + 'theme/controller/add'; var params = { }; var config = { 'title': _TL('theme.add_new_controller'), 'size': 'small', }; CORE.box(url, params, config); e.preventDefault(); return false; }); }, }; $(document).ready(function () { ADMIN_CONTROLLER.init(); });