Skip to content

Commit

Permalink
Allow instantiating jQueryPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilk committed Mar 25, 2013
1 parent aef2daf commit 28fc9b9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Libraries/jQuery/jQuery.Core/jQueryPosition.cs
Expand Up @@ -14,9 +14,13 @@ namespace jQueryApi {
/// </summary>
[ScriptImport]
[ScriptIgnoreNamespace]
[ScriptName("Object")]
public sealed class jQueryPosition {

private jQueryPosition() {
public jQueryPosition() {
}

public jQueryPosition(params object[] nameValuePairs) {
}

/// <summary>
Expand All @@ -27,6 +31,8 @@ public sealed class jQueryPosition {
get {
return 0;
}
set {
}
}

/// <summary>
Expand All @@ -37,6 +43,8 @@ public sealed class jQueryPosition {
get {
return 0;
}
set {
}
}

public static implicit operator Dictionary(jQueryPosition position) {
Expand Down

0 comments on commit 28fc9b9

Please sign in to comment.