mirror of
https://github.com/wahyd4/libr-ios.git
synced 2026-08-09 05:06:46 +10:00
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
var LibrmeExtension = function() {};
|
|
|
|
LibrmeExtension.prototype = {
|
|
run: function(arguments) {
|
|
arguments.completionFunction({"baseURI" : document.baseURI});
|
|
},
|
|
finalize: function(arguments) {
|
|
alert(arguments);
|
|
}
|
|
}
|
|
|
|
var ExtensionPreprocessingJS = new LibrmeExtension; |