-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.7.1
- Loading branch information
Showing
374 changed files
with
797 additions
and
865 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/component/iterator.js → dist/3.7.1/max/component/iterator.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/component/remux.js → dist/3.7.1/max/component/remux.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/component/sense.js → dist/3.7.1/max/component/sense.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/dom/collection.js → dist/3.7.1/max/dom/collection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
@@ -55,7 +55,7 @@ | |
return element; | ||
} | ||
} | ||
}, isTag = new RegExp("^<(\\w+)\\s*/>$"), matchEvent = new RegExp("^[^-]+"), pool = modules["pool/module"] && modules["pool/module"].create(modules["dom/event"], null, true) || null, hooks = modules["hook/css"], storage = {}, events = { | ||
}, isTag = new RegExp("^<(\\w+)\\s*/>$"), matchEvent = new RegExp("^[^-]+"), splitList = new RegExp(" +", "g"), pool = modules["pool/module"] && modules["pool/module"].create(modules["dom/event"], null, true) || null, hooks = modules["hook/css"], storage = {}, events = { | ||
custom: { | ||
type: "CustomEvent", | ||
method: "initCustomEvent" | ||
|
@@ -109,6 +109,9 @@ | |
} | ||
return element; | ||
} | ||
function resolveArguments(parameters) { | ||
return Array.prototype.concat.apply([], Array.prototype.splice.call(parameters, 0)).join(" ").split(splitList); | ||
} | ||
function matchesDelegate(event, delegate) { | ||
var i = 0, pointer; | ||
for (;(pointer = event.path[i]) !== undefined; i++) { | ||
|
@@ -146,7 +149,7 @@ | |
self.setStyles(styles); | ||
} | ||
if (self !== this) { | ||
self.dispose && self.dispose(); | ||
this.dispose && this.dispose(); | ||
} | ||
return self; | ||
}, | ||
|
@@ -182,13 +185,10 @@ | |
return self.element.getAttribute(attribute); | ||
} | ||
}, | ||
getAttributes: function(attributes) { | ||
var self = this, result = {}, i = 0, attribute; | ||
if (attributes) { | ||
attributes = typeof attributes === stringString ? attributes.split(" ") : attributes; | ||
for (;(attribute = attributes[i]) !== undefined; i++) { | ||
result[attribute] = self.element.getAttributes(attribute); | ||
} | ||
getAttributes: function() { | ||
var self = this, result = {}, attributes = resolveArguments(arguments), i = 0, attribute; | ||
for (;(attribute = attributes[i]) !== undefined; i++) { | ||
result[attribute] = self.element.getAttribute(attribute); | ||
} | ||
return result; | ||
}, | ||
|
@@ -215,13 +215,10 @@ | |
} | ||
return self; | ||
}, | ||
removeAttributes: function(attributes) { | ||
var self = this, i = 0, attribute; | ||
if (attributes) { | ||
attributes = typeof attributes === stringString ? attributes.split(" ") : attributes; | ||
for (;(attribute = attributes[i]) !== undefined; i++) { | ||
self.element.removeAttribute(attribute); | ||
} | ||
removeAttributes: function() { | ||
var self = this, attributes = resolveArguments(arguments), i = 0, attribute; | ||
for (;(attribute = attributes[i]) !== undefined; i++) { | ||
self.element.removeAttribute(attribute); | ||
} | ||
return self; | ||
}, | ||
|
@@ -231,13 +228,10 @@ | |
return hooks.process("get", self.element, property); | ||
} | ||
}, | ||
getStyles: function(properties) { | ||
var self = this, result = {}, i = 0, property; | ||
if (properties) { | ||
properties = typeof properties === stringString ? properties.split(" ") : properties; | ||
for (;(property = properties[i]) !== undefined; i++) { | ||
result[property] = hooks.process("get", self.element, property); | ||
} | ||
getStyles: function() { | ||
var self = this, result = {}, properties = resolveArguments(arguments), i = 0, property; | ||
for (;(property = properties[i]) !== undefined; i++) { | ||
result[property] = hooks.process("get", self.element, property); | ||
} | ||
return result; | ||
}, | ||
|
@@ -264,13 +258,10 @@ | |
} | ||
return self; | ||
}, | ||
removeStyles: function(properties) { | ||
var self = this, i = 0, property; | ||
if (properties) { | ||
properties = typeof properties === stringString ? properties.split(" ") : properties; | ||
for (;(property = properties[i]) !== undefined; i++) { | ||
self.setStyle(property, ""); | ||
} | ||
removeStyles: function() { | ||
var self = this, properties = resolveArguments(arguments), i = 0, property; | ||
for (;(property = properties[i]) !== undefined; i++) { | ||
self.setStyle(property, ""); | ||
} | ||
return self; | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
@@ -83,8 +83,7 @@ | |
_state: null, | ||
_priority: null, | ||
_constructor: function(element, settings) { | ||
var self = this; | ||
prototype._parent._constructor.call(self, element); | ||
var self = prototype._parent._constructor.call(this, element); | ||
settings = modules["function/merge"]({}, defaults, settings || {}); | ||
if (settings.threshold === "auto") { | ||
delete settings.threshold; | ||
|
@@ -108,6 +107,7 @@ | |
instanceOnResize.call(self); | ||
}); | ||
instanceOnResize.call(self); | ||
return self; | ||
}, | ||
remove: function() { | ||
var self = this; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
@@ -31,8 +31,7 @@ | |
} | ||
prototype = modules["dom/element/emerge"].extend({ | ||
_constructor: function(element, settings) { | ||
var self = this; | ||
prototype._parent._constructor.call(self, element, modules["function/merge"]({}, defaults, settings || {})); | ||
var self = prototype._parent._constructor.call(this, element, modules["function/merge"]({}, defaults, settings || {})); | ||
self.on(EVENT_EMERGED, function onEmerge(event) { | ||
if (queue === 0 || event.data === 1) { | ||
self.remove(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
@@ -127,8 +127,8 @@ | |
} | ||
prototype = modules["dom/element"].extend({ | ||
_constructor: function(element, settings) { | ||
var self = this, foreground, background; | ||
prototype._parent._constructor.call(self, element); | ||
var self, foreground, background; | ||
self = prototype._parent._constructor.call(this, element); | ||
self._settings = settings = modules["function/merge"]({}, defaults, settings); | ||
foreground = self.getAttribute(settings.attribute); | ||
background = self.getStyle("backgroundImage"); | ||
|
@@ -138,6 +138,7 @@ | |
if (background !== "none" && regexBackground.test(background)) { | ||
processMain.call(self, background, true); | ||
} | ||
return self; | ||
}, | ||
hide: function() { | ||
this.setStyles({ | ||
|
@@ -155,13 +156,14 @@ | |
loader = modules["dom/element"].extend({ | ||
_url: null, | ||
_constructor: function(url, element) { | ||
var self = this; | ||
var self; | ||
if (!element) { | ||
element = pool && pool.obtain("img") || document.createElement("img"); | ||
} | ||
loader._parent._constructor.call(self, element); | ||
self = loader._parent._constructor.call(this, element); | ||
self._url = url; | ||
processTransport.call(self, modules["transport/xhr"]); | ||
return self; | ||
} | ||
}); | ||
return prototype; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/function/load/css.js → dist/3.7.1/max/function/load/css.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/function/merge.js → dist/3.7.1/max/function/merge.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/function/proximity.js → dist/3.7.1/max/function/proximity.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/function/unique/string.js → dist/3.7.1/max/function/unique/string.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/function/unique/uuid.js → dist/3.7.1/max/function/unique/uuid.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/jquery/extension/selector.js → dist/3.7.1/max/jquery/extension/selector.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
4 changes: 2 additions & 2 deletions
4
dist/3.7.0/max/jquery/function/prefetch.js → dist/3.7.1/max/jquery/function/prefetch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/*! | ||
* Qoopido.js library | ||
* | ||
* version: 3.7.0 | ||
* date: 2015-07-23 | ||
* version: 3.7.1 | ||
* date: 2015-07-25 | ||
* author: Dirk Lueth <[email protected]> | ||
* website: https://github.com/dlueth/qoopido.js | ||
* | ||
|
Oops, something went wrong.