PHP Classes

File: resources/assets/js/base.js

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Polr Admin Dashboard   resources/assets/js/base.js   Download  
File: resources/assets/js/base.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Polr Admin Dashboard
Another admin dashboard for the Polr URL shortener
Author: By
Last change:
Date: 6 years ago
Size: 723 bytes
 

Contents

Class file image Download
// Escape jQuery selectors function esc_selector(selector) { return selector.replace( /(:|\.|\[|\]|,)/g, "\\$1" ); } jQuery.fn.clearForm = function() { // http://stackoverflow.com/questions/6364289/clear-form-fields-with-jquery $(this).find('input').not(':button, :submit, :reset, :hidden') .val('') .removeAttr('checked') .removeAttr('selected'); return this; }; // Output helpful console message // console.log('%cPolr', 'font-size:5em;color:green'); // console.log('%cNeed help? Open a ticket: https://github.com/cydrobolt/polr', 'color:blue'); // console.log('%cDocs: https://docs.polr.me', 'color:blue'); //Set up the Polr object var polr = { home: {}, stats: {} };