Top "Extend" questions

Cause a unit of code (a class in POO, a style class in CSS ...) to cover a wider area.

Python adding extra area to image

So I have a table with image sizes. There are multiple images of different sizes (66x66, 400x400, etc.). I have …

python image extend area
Reusing styles in SASS/SCSS without merging selectors

If I have a style definition in SCSS that looks like this: #someid { ... .message { ... &.error { // overrides of .message class } } } …

css extend sass
Extend ES6 plugin to jQuery prototype

I would like ask some help because i can't convert my classic jQuery (v2) plugin in ES6 with module and …

javascript jquery ecmascript-6 babeljs extend
How do you extend Kendo UI widgets

I couldn't find any official documentation about extending Kendo UI widgets or making composite controls on Kendo UI's website. Are …

widget extend kendo-ui
Override/Extend Magento Abstract class?

I only need to add a method to the Mage_Core_Model_Abstract class. For that, in my config.php …

magento zend-framework overriding extend
How can I extend $q promise in Angularjs with a .success and .error

I wrote this little code in a custom service in AngularJS. In my service: var deferred = $q.defer(); var promise = …

angularjs extend overriding promise angularjs-service
How to extend a typedef parameter in JSDOC?

Assuming you have the following code inside a ES6 class (documentation): /** * @typedef Test~options * @type {object.<string>} * @property {…

javascript typedef extend jsdoc type-definition
Array.extend(string) adds every character instead of just the string

I am trying to extend an element to a list in Python, however, instead of extending the string in the …

python string extend
Extend Zepto.js with a jQuery method? scrollTop()

I'm using Zepto.js on a current project. Zepto doesn't support the scrollTop() method that jQuery has in it. Is …

javascript jquery extend zepto
PHP : Does extending class need another 'use' to call namespace?

I'm wondering whether in the situation where I'm extending a class that has already 'use' keyword above it to use …

php class inheritance namespaces extend